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

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
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment