inode.c (292dd876ee765c478b27c93cc51e93a558ed58bf) inode.c (4de151d8cd2553e7e89044ab5d72fcad4eb04afb)
1/*
2 * linux/fs/fat/inode.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
6 * Rewritten for the constant inumbers support by Al Viro
7 *
8 * Fixes:

--- 1087 unchanged lines hidden (view full) ---

1096 if (!silent) {
1097 printk(KERN_ERR
1098 "FAT: Unrecognized mount option \"%s\" "
1099 "or missing value\n", p);
1100 }
1101 return -EINVAL;
1102 }
1103 }
1/*
2 * linux/fs/fat/inode.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 * VFAT extensions by Gordon Chaffee, merged with msdos fs by Henrik Storner
6 * Rewritten for the constant inumbers support by Al Viro
7 *
8 * Fixes:

--- 1087 unchanged lines hidden (view full) ---

1096 if (!silent) {
1097 printk(KERN_ERR
1098 "FAT: Unrecognized mount option \"%s\" "
1099 "or missing value\n", p);
1100 }
1101 return -EINVAL;
1102 }
1103 }
1104 /* UTF8 doesn't provide FAT semantics */
1104 /* UTF-8 doesn't provide FAT semantics */
1105 if (!strcmp(opts->iocharset, "utf8")) {
1106 printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
1107 " for FAT filesystems, filesystem will be case sensitive!\n");
1108 }
1109
1110 if (opts->unicode_xlate)
1111 opts->utf8 = 0;
1112

--- 356 unchanged lines hidden ---
1105 if (!strcmp(opts->iocharset, "utf8")) {
1106 printk(KERN_ERR "FAT: utf8 is not a recommended IO charset"
1107 " for FAT filesystems, filesystem will be case sensitive!\n");
1108 }
1109
1110 if (opts->unicode_xlate)
1111 opts->utf8 = 0;
1112

--- 356 unchanged lines hidden ---