inode.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) inode.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b)
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:

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

523 init_once, NULL);
524 if (fat_inode_cachep == NULL)
525 return -ENOMEM;
526 return 0;
527}
528
529static void __exit fat_destroy_inodecache(void)
530{
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:

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

523 init_once, NULL);
524 if (fat_inode_cachep == NULL)
525 return -ENOMEM;
526 return 0;
527}
528
529static void __exit fat_destroy_inodecache(void)
530{
531 if (kmem_cache_destroy(fat_inode_cachep))
532 printk(KERN_INFO "fat_inode_cache: not all structures were freed\n");
531 kmem_cache_destroy(fat_inode_cachep);
533}
534
535static int fat_remount(struct super_block *sb, int *flags, char *data)
536{
537 struct msdos_sb_info *sbi = MSDOS_SB(sb);
538 *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
539 return 0;
540}

--- 925 unchanged lines hidden ---
532}
533
534static int fat_remount(struct super_block *sb, int *flags, char *data)
535{
536 struct msdos_sb_info *sbi = MSDOS_SB(sb);
537 *flags |= MS_NODIRATIME | (sbi->options.isvfat ? 0 : MS_NOATIME);
538 return 0;
539}

--- 925 unchanged lines hidden ---