mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [patch -mm 1/1] remove useless tolower in isofs
@ 2007-05-28  1:08 young dave
  2007-05-28  2:53 ` John Anthony Kazos Jr.
  2007-05-28  6:00 ` Pekka Enberg
  0 siblings, 2 replies; 9+ messages in thread
From: young dave @ 2007-05-28  1:08 UTC (permalink / raw)
  To: Andrew Morton; +Cc: Linux Kernel Mailing List

Hi,
Remove useless tolower in isofs

Signed-off-by: dave young <hidave.darkstar@gmail.com>

 inode.c |    2 +-
 1 file changed, 1 insertions(+), 1 deletions(-)

diff -dur linux/fs/isofs/inode.c linux.new/fs/isofs/inode.c
--- linux/fs/isofs/inode.c      2007-05-28 08:54:33.000000000 +0000
+++ linux.new/fs/isofs/inode.c  2007-05-28 08:55:02.000000000 +0000
@@ -197,7 +197,7 @@
        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);

Regards
dave

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2007-05-30  5:32 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-05-28  1:08 [patch -mm 1/1] remove useless tolower in isofs young dave
2007-05-28  2:53 ` John Anthony Kazos Jr.
2007-05-28  3:11   ` young dave
2007-05-29 23:17     ` Andrew Morton
2007-05-30  0:20       ` young dave
2007-05-30  5:32         ` young dave
2007-05-28  6:00 ` Pekka Enberg
2007-05-28 10:10   ` young dave
2007-05-28 10:16     ` Pekka Enberg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome