The patch titled iget-stop-isofs-from-using-read_inode fix has been added to the -mm tree. Its filename is iget-stop-isofs-from-using-read_inode-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: iget-stop-isofs-from-using-read_inode fix From: Dave Young <hidave.darkstar@xxxxxxxxx> Signed-off-by: Dave Young <hidave.darkstar@xxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Jan Kara <jack@xxxxxx> Cc: Christoph Hellwig <hch@xxxxxx> Cc: <Valdis.Kletnieks@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/isofs/inode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/isofs/inode.c~iget-stop-isofs-from-using-read_inode-fix fs/isofs/inode.c --- a/fs/isofs/inode.c~iget-stop-isofs-from-using-read_inode-fix +++ a/fs/isofs/inode.c @@ -1414,7 +1414,7 @@ struct inode *isofs_iget(struct super_bl ret = isofs_read_inode(inode); if (ret < 0) { iget_failed(inode); - inode = ERR_PTR(ret); + return NULL; } else { unlock_new_inode(inode); } _ Patches currently in -mm which might be from hidave.darkstar@xxxxxxxxx are origin.patch pktcdvd-add-kobject_put-when-kobject-register-fails.patch git-cpufreq.patch bluetooth-hidp_process_hid_control-remove-unnecessary-parameter-dealing.patch bluetooth-rfcomm-tty_close-before-destruct.patch git-wireless.patch iget-stop-isofs-from-using-read_inode-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