提交 f17e121f 编写于 作者: Y young dave 提交者: Linus Torvalds

remove useless tolower in isofs

Remove useless tolower in isofs
Signed-off-by: Ndave young <hidave.darkstar@gmail.com>
Acked-by: NPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 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% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册