[PATCH] vfat dentry handling fix (3/11)
commit83bb8e189955419c3ee957875a4583899a32ed88
authorHirofumi Ogawa <hirofumi@mail.parknet.co.jp>
Fri, 25 Jul 2003 09:12:33 +0000 (25 02:12 -0700)
committerLinus Torvalds <torvalds@home.osdl.org>
Fri, 25 Jul 2003 09:12:33 +0000 (25 02:12 -0700)
tree0dd986ae21ab5554c1b8b19c45dc534ff454bbba
parent749f66293568e41daf1de6522d8015ca971580a5
[PATCH] vfat dentry handling fix (3/11)

This fixes filename case handling in vfat_revalidate():

before:
# mount -t vfat /dev/hda6 /mnt -o shortname=winnt
# cd /mnt
# cat File.Txt # make negative dentry
cat: File.Txt: No such file or directory
# touch file.txt # match negative dentry
# ls
File.Txt

after:
# mount -t vfat /dev/hda6 /mnt -o shortname=winnt
# cd /mnt
# cat File.Txt # make negative dentry
cat: File.Txt: No such file or directory
# touch file.txt # match negative dentry
# ls
file.txt
fs/vfat/namei.c