The patch titled i2o message leak in i2o_msg_post_wait_mem() has been removed from the -mm tree. Its filename was i2o-message-leak-in-i2o_msg_post_wait_mem.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: i2o message leak in i2o_msg_post_wait_mem() From: Vasily Averin <vvs@xxxxx> We need to free i2o msg in case of error. Signed-off-by: Vasily Averin <vvs@xxxxx> Acked-by: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Markus Lidel <Markus.Lidel@xxxxxxxxxxxxxxxxx> Acked-by: Kirill Korotaev <dev@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/message/i2o/exec-osm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN drivers/message/i2o/exec-osm.c~i2o-message-leak-in-i2o_msg_post_wait_mem drivers/message/i2o/exec-osm.c --- a/drivers/message/i2o/exec-osm.c~i2o-message-leak-in-i2o_msg_post_wait_mem +++ a/drivers/message/i2o/exec-osm.c @@ -131,8 +131,10 @@ int i2o_msg_post_wait_mem(struct i2o_con int rc = 0; wait = i2o_exec_wait_alloc(); - if (!wait) + if (!wait) { + i2o_msg_nop(c, msg); return -ENOMEM; + } if (tcntxt == 0xffffffff) tcntxt = 0x80000000; _ Patches currently in -mm which might be from vvs@xxxxx are origin.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