Hi Dave, Today's linux-next build (sparc64 defconfig) failed like this: arch/sparc/oprofile/init.c: In function 'timer_start': arch/sparc/oprofile/init.c:46: error: 'HZ' undeclared (first use in this function) I have no idea why this just cropped up, but I have added the following patch for today. From: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> Date: Mon, 5 Oct 2009 18:32:33 +1100 Subject: [PATCH] sparc: using HZ needs an include of linux/param.h Signed-off-by: Stephen Rothwell <sfr@xxxxxxxxxxxxxxxx> --- arch/sparc/oprofile/init.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/sparc/oprofile/init.c b/arch/sparc/oprofile/init.c index f97cb8b..62f4120 100644 --- a/arch/sparc/oprofile/init.c +++ b/arch/sparc/oprofile/init.c @@ -11,7 +11,8 @@ #include <linux/oprofile.h> #include <linux/errno.h> #include <linux/init.h> +#include <linux/param.h> /* for HZ */ #ifdef CONFIG_SPARC64 #include <linux/notifier.h> #include <linux/rcupdate.h> -- 1.6.4.3 -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx http://www.canb.auug.org.au/~sfr/ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html