The patch titled don't #error on higher HZ values has been removed from the -mm tree. Its filename was dont-error-on-higher-hz-values.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: don't #error on higher HZ values From: Pavel Machek <pavel@xxxxxx> For some crazy reason (trying to work around hw problem in i810) I wanted to use HZ around 4000. Signed-off-by: Pavel Machek <pavel@xxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/jiffies.h | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN include/linux/jiffies.h~dont-error-on-higher-hz-values include/linux/jiffies.h --- a/include/linux/jiffies.h~dont-error-on-higher-hz-values +++ a/include/linux/jiffies.h @@ -29,6 +29,12 @@ # define SHIFT_HZ 9 #elif HZ >= 768 && HZ < 1536 # define SHIFT_HZ 10 +#elif HZ >= 1536 && HZ < 3072 +# define SHIFT_HZ 11 +#elif HZ >= 3072 && HZ < 6144 +# define SHIFT_HZ 12 +#elif HZ >= 6144 && HZ < 12288 +# define SHIFT_HZ 13 #else # error You lose. #endif _ Patches currently in -mm which might be from pavel@xxxxxx are git-acpi.patch working-3d-dri-intel-agpko-resume-for-i815-chip.patch git-sched.patch small-cleanups-for-scsi_hosth.patch git-x86.patch kernel-power-diskc-make-code-static.patch make-kernel_shutdown_prepare-static.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