From: Badari Pulavarty Date: Tue, 17 Apr 2007 19:53:09 +0000 (-0400) Subject: cache_k8_northbridges() overflows beyond allocation X-Git-Tag: v2.6.20.11~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a9c01941701641d505c07e7364a03447c694f6e8;p=thirdparty%2Fkernel%2Fstable.git cache_k8_northbridges() overflows beyond allocation cache_k8_northbridges() overflows beyond allocation 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 Signed-off-by: Linus Torvalds Cc: Andi Kleen Cc: Chuck Ebbert Signed-off-by: Greg Kroah-Hartman --- diff --git a/arch/x86_64/kernel/k8.c b/arch/x86_64/kernel/k8.c index 6416682d33d08..bc11b32e8b4d4 100644 --- a/arch/x86_64/kernel/k8.c +++ b/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;