Re: [PATCH] [16/21] HWPOISON: The high level memory error handlerin the VM v7

From: Daniel Walker
Date: Fri Sep 11 2009 - 15:25:27 EST


On Fri, 2009-09-11 at 20:48 +0200, Andi Kleen wrote:
> - "VmallocChunk: %8lu kB\n",
> + "VmallocChunk: %8lu kB\n"
> +#ifdef CONFIG_MEMORY_FAILURE
> + "HardwareCorrupted: %8lu kB\n"
> +#endif
> + ,
> K(i.totalram),
> K(i.freeram),
> K(i.bufferram),
> @@ -140,6 +144,9 @@ static int meminfo_proc_show(struct seq_
> (unsigned long)VMALLOC_TOTAL >> 10,
> vmi.used >> 10,
> vmi.largest_chunk >> 10
> +#ifdef CONFIG_MEMORY_FAILURE
> + ,atomic_long_read(&mce_bad_pages) << (PAGE_SHIFT - 10)
> +#endif
> );

The rest of your patches are totally clean, except this one .. It has
some warning, but one error in the second ifdef block above ..

Daniel

--
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/