public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] edac: fix buffer overrun if no suitable bandwidth found
@ 2012-10-22 15:30 Denis Kirjanov
  2012-10-23 15:39 ` Borislav Petkov
  2012-10-23 19:10 ` Andrew Morton
  0 siblings, 2 replies; 9+ messages in thread
From: Denis Kirjanov @ 2012-10-22 15:30 UTC (permalink / raw)
  To: linux-edac; +Cc: linux-kernel, stable, Denis Kirjanov

fix buffer overrun if no suitable bandwidth found

Signed-off-by: Denis Kirjanov <kirjanov@gmail.com>
---
 drivers/edac/amd64_edac.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c
index 5a297a2..d85ad9e 100644
--- a/drivers/edac/amd64_edac.c
+++ b/drivers/edac/amd64_edac.c
@@ -188,6 +188,9 @@ static int __amd64_set_scrub_rate(struct pci_dev *ctl, u32 new_bw, u32 min_rate)
 		 * scrubrates array.
 		 */
 	}
+	if (i == ARRAY_SIZE(scrubrates)) {
+		i--;
+	}
 
 	scrubval = scrubrates[i].scrubval;
 
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2012-10-23 21:58 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-22 15:30 [PATCH] edac: fix buffer overrun if no suitable bandwidth found Denis Kirjanov
2012-10-23 15:39 ` Borislav Petkov
2012-10-23 19:10 ` Andrew Morton
2012-10-23 20:26   ` Borislav Petkov
2012-10-23 20:37     ` Andrew Morton
2012-10-23 20:49       ` Borislav Petkov
2012-10-23 21:09         ` Andrew Morton
2012-10-23 21:38           ` Borislav Petkov
2012-10-23 21:58             ` Andrew Morton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox