The patch titled remove useless tolower in isofs has been added to the -mm tree. Its filename is remove-useless-tolower-in-isofs.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: remove useless tolower in isofs From: "young dave" <hidave.darkstar@xxxxxxxxx> Remove useless tolower in isofs Signed-off-by: dave young <hidave.darkstar@xxxxxxxxx> Acked-by: Pekka Enberg <penberg@xxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/isofs/inode.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/isofs/inode.c~remove-useless-tolower-in-isofs fs/isofs/inode.c --- a/fs/isofs/inode.c~remove-useless-tolower-in-isofs +++ a/fs/isofs/inode.c @@ -197,7 +197,7 @@ isofs_hashi_common(struct dentry *dentry hash = init_name_hash(); while (len--) { c = tolower(*name++); - hash = partial_name_hash(tolower(c), hash); + hash = partial_name_hash(c, hash); } qstr->hash = end_name_hash(hash); _ Patches currently in -mm which might be from hidave.darkstar@xxxxxxxxx are ntfs_init_locked_inode-fix-array-indexing.patch git-cifs.patch remove-useless-tolower-in-isofs.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