Re: [PATCH] Fix CONFIG_NOHIGHMEM for extended crashkernel commandline

From: Andrew Morton
Date: Tue Sep 25 2007 - 03:06:40 EST


On Tue, 25 Sep 2007 08:55:29 +0200 Bernhard Walle <bwalle@xxxxxxx> wrote:

> @@ -381,6 +381,20 @@ extern unsigned long __init setup_memory
> extern void zone_sizes_init(void);
> #endif /* !CONFIG_NEED_MULTIPLE_NODES */
>
> +

Only one line is needed between functions, please.

> +#ifdef CONFIG_HIGHMEM
> +static inline unsigned long long get_total_mem(void)
> +{
> + return (max_low_pfn + highend_pfn - highstart_pfn) << PAGE_SHIFT;
> +}
> +#else
> +static inline unsigned long long get_total_mem(void)
> +{
> + return max_low_pfn << PAGE_SHIFT;
> +}
> +#endif
> +
> +

Full of bugs. (unsigned long << foo) returns an unsigned long. With >4G
there will be truncation.

Please review the full patchset for other occurrences of this.
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/