Netdev List
 help / color / mirror / Atom feed
* [PATCH] net: ifb error path loop fix
@ 2007-01-01 23:55 Mariusz Kozlowski
  2007-01-02  7:51 ` David Miller
  0 siblings, 1 reply; 5+ messages in thread
From: Mariusz Kozlowski @ 2007-01-01 23:55 UTC (permalink / raw)
  To: hadi; +Cc: netdev, jeff, linux-kernel

Hello,

	On error we should start freeing resources at [i-1] not [i-2].

Signed-off-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl>

 drivers/net/ifb.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff -upr linux-2.6.20-rc2-mm1-a/drivers/net/ifb.c linux-2.6.20-rc2-mm1-b/drivers/net/ifb.c
--- linux-2.6.20-rc2-mm1-a/drivers/net/ifb.c	2006-12-24 05:00:32.000000000 +0100
+++ linux-2.6.20-rc2-mm1-b/drivers/net/ifb.c	2007-01-02 00:25:34.000000000 +0100
@@ -271,8 +271,7 @@ static int __init ifb_init_module(void)
 	for (i = 0; i < numifbs && !err; i++)
 		err = ifb_init_one(i);
 	if (err) {
-		i--;
-		while (--i >= 0)
+		while (i--)
 			ifb_free_one(i);
 	}
 


-- 
Regards,

	Mariusz Kozlowski

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

end of thread, other threads:[~2007-01-02 23:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-01 23:55 [PATCH] net: ifb error path loop fix Mariusz Kozlowski
2007-01-02  7:51 ` David Miller
2007-01-02 10:30   ` Jarek Poplawski
2007-01-02 10:49   ` Mariusz Kozlowski
2007-01-02 23:20     ` David Miller

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