The patch titled fs: 9p/conv.c error path fix has been added to the -mm tree. Its filename is fs-9p-convc-error-path-fix.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: fs: 9p/conv.c error path fix From: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> When buf_check_overflow() returns != 0 we will hit kfree(ERR_PTR(err)) and it will not be happy about it. Signed-off-by: Mariusz Kozlowski <m.kozlowski@xxxxxxxxxx> Cc: Latchesar Ionkov <lucho@xxxxxxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxxxxxxxx> Cc: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- net/9p/conv.c | 1 + 1 files changed, 1 insertion(+) diff -puN net/9p/conv.c~fs-9p-convc-error-path-fix net/9p/conv.c --- a/net/9p/conv.c~fs-9p-convc-error-path-fix +++ a/net/9p/conv.c @@ -763,6 +763,7 @@ struct p9_fcall *p9_create_twrite(u32 fi if (err) { kfree(fc); fc = ERR_PTR(err); + goto error; } if (buf_check_overflow(bufp)) { _ Patches currently in -mm which might be from m.kozlowski@xxxxxxxxxx are origin.patch powerpc-tlb_32c-build-fix.patch mtd-add-module-license-to-mtdbdi.patch dont-optimise-away-baud-rate-changes-when-bother-is-used.patch fs-9p-convc-error-path-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