The patch titled v9fs: fix fid check in v9fs_create has been removed from the -mm tree. Its filename is v9fs-fix-fid-check-in-v9fs_create.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: v9fs: fix fid check in v9fs_create From: Latchesar Ionkov <lucho@xxxxxxxxxx> Fix an incorrect check whether a fid was allocated in v9fs_create and if it should be freed on error. Signed-off-by: Latchesar Ionkov <lucho@xxxxxxxxxx> Cc: Eric Van Hensbergen <ericvh@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/9p/vfs_inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/9p/vfs_inode.c~v9fs-fix-fid-check-in-v9fs_create fs/9p/vfs_inode.c --- a/fs/9p/vfs_inode.c~v9fs-fix-fid-check-in-v9fs_create +++ a/fs/9p/vfs_inode.c @@ -300,7 +300,7 @@ clunk_fid: fid = V9FS_NOFID; put_fid: - if (fid >= 0) + if (fid != V9FS_NOFID) v9fs_put_idpool(fid, &v9ses->fidpool); kfree(fcall); _ Patches currently in -mm which might be from lucho@xxxxxxxxxx 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