From: young dave Date: Mon, 16 Jul 2007 06:40:17 +0000 (-0700) Subject: remove useless tolower in isofs X-Git-Tag: v2.6.23-rc1~913 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=f17e121fd055ba60d57a992702e59ae495faba76;p=~shefty%2Frdma-dev.git remove useless tolower in isofs Remove useless tolower in isofs Signed-off-by: dave young Acked-by: Pekka Enberg Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index 15c866f1a1f..4f5418be059 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c @@ -197,7 +197,7 @@ isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms) 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);