The patch titled high-res-timers-core fix has been added to the -mm tree. Its filename is high-res-timers-core-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: high-res-timers-core fix From: Valdis.Kletnieks@xxxxxx This complains if you try to compile with -Werror-implicit-function-declaration and rightly so, as we're missing a #include to define IS_ERR_VALUE(). Signed-off-by: Valdis Kletnieks <valdis.kletnieks@xxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: john stultz <johnstul@xxxxxxxxxx> Cc: Roman Zippel <zippel@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- kernel/hrtimer.c | 1 + kernel/time/clockevents.c | 1 + 2 files changed, 2 insertions(+) diff -puN kernel/hrtimer.c~high-res-timers-core-fix kernel/hrtimer.c --- a/kernel/hrtimer.c~high-res-timers-core-fix +++ a/kernel/hrtimer.c @@ -43,6 +43,7 @@ #include <linux/clockchips.h> #include <linux/profile.h> #include <linux/seq_file.h> +#include <linux/err.h> #include <asm/uaccess.h> diff -puN kernel/time/clockevents.c~high-res-timers-core-fix kernel/time/clockevents.c --- a/kernel/time/clockevents.c~high-res-timers-core-fix +++ a/kernel/time/clockevents.c @@ -33,6 +33,7 @@ #include <linux/profile.h> #include <linux/sysdev.h> #include <linux/hrtimer.h> +#include <linux/err.h> #define MAX_CLOCK_EVENTS 4 #define GLOBAL_CLOCK_EVENT MAX_CLOCK_EVENTS _ Patches currently in -mm which might be from valdis.kletnieks@xxxxxx are high-res-timers-core-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html