diff --git a/kernel/external-module-compat.h b/kernel/external-module-compat.h index 33f1675..00b43f1 100644 --- a/kernel/external-module-compat.h +++ b/kernel/external-module-compat.h @@ -12,6 +12,7 @@ #include "include/linux/kvm.h" #include #include +#include /* * 2.6.16 does not have GFP_NOWAIT @@ -362,3 +363,8 @@ static inline void preempt_notifier_sys_init(void) {} static inline void preempt_notifier_sys_exit(void) {} #endif + +/* HRTIMER_MODE_ABS started life with a different name */ +#ifndef HRTIMER_MODE_ABS +#define HRTIMER_MODE_ABS HRTIMER_ABS +#endif