The patch titled cache_k8_northbridges() overflows beyond allocation has been added to the -mm tree. Its filename is cache_k8_northbridges-overflows-beyond-allocation.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: cache_k8_northbridges() overflows beyond allocation From: Badari Pulavarty <pbadari@xxxxxxxxx> cache_k8_northbridges() is storing config values to incorrect locations (in flush_words) and also its overflowing beyond the allocation, causing slab verification failures. Signed-off-by: Badari Pulavarty <pbadari@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx>a Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86_64/kernel/k8.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN arch/x86_64/kernel/k8.c~cache_k8_northbridges-overflows-beyond-allocation arch/x86_64/kernel/k8.c --- a/arch/x86_64/kernel/k8.c~cache_k8_northbridges-overflows-beyond-allocation +++ a/arch/x86_64/kernel/k8.c @@ -61,8 +61,8 @@ int cache_k8_northbridges(void) dev = NULL; i = 0; while ((dev = next_k8_northbridge(dev)) != NULL) { - k8_northbridges[i++] = dev; - pci_read_config_dword(dev, 0x9c, &flush_words[i]); + k8_northbridges[i] = dev; + pci_read_config_dword(dev, 0x9c, &flush_words[i++]); } k8_northbridges[i] = NULL; return 0; _ Patches currently in -mm which might be from pbadari@xxxxxxxxx are cache_k8_northbridges-overflows-beyond-allocation.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