The patch titled net: ifb error path loop fix has been removed from the -mm tree. Its filename was net-ifb-error-path-loop-fix.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: net: ifb error path loop fix From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> On error we should start freeing resources at [i-1] not [i-2]. Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/ifb.c | 3 +-- 1 files changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/net/ifb.c~net-ifb-error-path-loop-fix drivers/net/ifb.c --- a/drivers/net/ifb.c~net-ifb-error-path-loop-fix +++ a/drivers/net/ifb.c @@ -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); } _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch git-alsa.patch git-powerpc.patch ppc-cs4218_tdm-remove-extra-brace.patch git-dvb.patch mips-dbg_io-stray-brackets-fix.patch scsi-sic7xxx-stray-bracket-fix.patch scsi-53c7xx-brackets-fix.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