namei_vfat.c (472475000979a156bc32cd75caa59737f5a1caa5) namei_vfat.c (6bb885ecd746752aa70d146b58f2f83e5e21813d)
1/*
2 * linux/fs/vfat/namei.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 *
6 * Windows95/Windows NT compatible extended MSDOS filesystem
7 * by Gordon Chaffee Copyright (C) 1995. Send bug reports for the
8 * VFAT filesystem to <chaffee@cs.berkeley.edu>. Specify

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

1027 .create = vfat_create,
1028 .lookup = vfat_lookup,
1029 .unlink = vfat_unlink,
1030 .mkdir = vfat_mkdir,
1031 .rmdir = vfat_rmdir,
1032 .rename = vfat_rename,
1033 .setattr = fat_setattr,
1034 .getattr = fat_getattr,
1/*
2 * linux/fs/vfat/namei.c
3 *
4 * Written 1992,1993 by Werner Almesberger
5 *
6 * Windows95/Windows NT compatible extended MSDOS filesystem
7 * by Gordon Chaffee Copyright (C) 1995. Send bug reports for the
8 * VFAT filesystem to <chaffee@cs.berkeley.edu>. Specify

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

1027 .create = vfat_create,
1028 .lookup = vfat_lookup,
1029 .unlink = vfat_unlink,
1030 .mkdir = vfat_mkdir,
1031 .rmdir = vfat_rmdir,
1032 .rename = vfat_rename,
1033 .setattr = fat_setattr,
1034 .getattr = fat_getattr,
1035 .update_time = fat_update_time,
1035};
1036
1037static void setup(struct super_block *sb)
1038{
1039 MSDOS_SB(sb)->dir_ops = &vfat_dir_inode_operations;
1040 if (MSDOS_SB(sb)->options.name_check != 's')
1041 sb->s_d_op = &vfat_ci_dentry_ops;
1042 else

--- 40 unchanged lines hidden ---
1036};
1037
1038static void setup(struct super_block *sb)
1039{
1040 MSDOS_SB(sb)->dir_ops = &vfat_dir_inode_operations;
1041 if (MSDOS_SB(sb)->options.name_check != 's')
1042 sb->s_d_op = &vfat_ci_dentry_ops;
1043 else

--- 40 unchanged lines hidden ---