projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03a9c30
)
remove useless tolower in isofs
author
young dave
<hidave.darkstar@gmail.com>
Mon, 16 Jul 2007 06:40:17 +0000
(23:40 -0700)
committer
Linus Torvalds
<torvalds@woody.linux-foundation.org>
Mon, 16 Jul 2007 16:05:43 +0000
(09:05 -0700)
Remove useless tolower in isofs
Signed-off-by: dave young <hidave.darkstar@gmail.com>
Acked-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/isofs/inode.c
patch
|
blob
|
blame
|
history
diff --git
a/fs/isofs/inode.c
b/fs/isofs/inode.c
index 15c866f1a1fdacbf53c08652cf6eefeaf303f790..4f5418be0590ed6d484fd628a31fc65c9c7bea71 100644
(file)
--- 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);