netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] X:beyond ARRAY_SIZE of ib->btx_ring
@ 2009-05-21 20:28 Roel Kluin
  2009-05-21 20:31 ` [PATCH] sunlance: beyond " Roel Kluin
  0 siblings, 1 reply; 4+ messages in thread
From: Roel Kluin @ 2009-05-21 20:28 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: Andrew Morton, netdev

Do not go beyond ARRAY_SIZE of ib->btx_ring

Signed-off-by: Roel Kluin <roel.kluin@gmail.com>
---
diff --git a/drivers/net/sunlance.c b/drivers/net/sunlance.c
index 704301a..aa2a4ef 100644
--- a/drivers/net/sunlance.c
+++ b/drivers/net/sunlance.c
@@ -343,7 +343,7 @@ static void lance_init_ring_dvma(struct net_device *dev)
 	ib->phys_addr [5] = dev->dev_addr [4];
 
 	/* Setup the Tx ring entries */
-	for (i = 0; i <= TX_RING_SIZE; i++) {
+	for (i = 0; i < TX_RING_SIZE; i++) {
 		leptr = LANCE_ADDR(aib + libbuff_offset(tx_buf, i));
 		ib->btx_ring [i].tmd0      = leptr;
 		ib->btx_ring [i].tmd1_hadr = leptr >> 16;


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

end of thread, other threads:[~2009-05-21 22:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-21 20:28 [PATCH] X:beyond ARRAY_SIZE of ib->btx_ring Roel Kluin
2009-05-21 20:31 ` [PATCH] sunlance: beyond " Roel Kluin
2009-05-21 20:34   ` David Miller
2009-05-21 22:02   ` David Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).