Commit f17e121f authored by young dave's avatar young dave Committed by Linus Torvalds
Browse files

remove useless tolower in isofs



Remove useless tolower in isofs

Signed-off-by: default avatardave young <hidave.darkstar@gmail.com>
Acked-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 03a9c30c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);