inode.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) | inode.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b) |
---|---|
1/* 2 * linux/fs/isofs/inode.c 3 * 4 * (C) 1991 Linus Torvalds - minix filesystem 5 * 1992, 1993, 1994 Eric Youngdale Modified for ISO 9660 filesystem. 6 * 1994 Eberhard Moenkeberg - multi session handling. 7 * 1995 Mark Dobie - allow mounting of some weird VideoCDs and PhotoCDs. 8 * 1997 Gordon Chaffee - Joliet CDs --- 82 unchanged lines hidden (view full) --- 91 init_once, NULL); 92 if (isofs_inode_cachep == NULL) 93 return -ENOMEM; 94 return 0; 95} 96 97static void destroy_inodecache(void) 98{ | 1/* 2 * linux/fs/isofs/inode.c 3 * 4 * (C) 1991 Linus Torvalds - minix filesystem 5 * 1992, 1993, 1994 Eric Youngdale Modified for ISO 9660 filesystem. 6 * 1994 Eberhard Moenkeberg - multi session handling. 7 * 1995 Mark Dobie - allow mounting of some weird VideoCDs and PhotoCDs. 8 * 1997 Gordon Chaffee - Joliet CDs --- 82 unchanged lines hidden (view full) --- 91 init_once, NULL); 92 if (isofs_inode_cachep == NULL) 93 return -ENOMEM; 94 return 0; 95} 96 97static void destroy_inodecache(void) 98{ |
99 if (kmem_cache_destroy(isofs_inode_cachep)) 100 printk(KERN_INFO "iso_inode_cache: not all structures were " 101 "freed\n"); | 99 kmem_cache_destroy(isofs_inode_cachep); |
102} 103 104static int isofs_remount(struct super_block *sb, int *flags, char *data) 105{ 106 /* we probably want a lot more here */ 107 *flags |= MS_RDONLY; 108 return 0; 109} --- 1345 unchanged lines hidden --- | 100} 101 102static int isofs_remount(struct super_block *sb, int *flags, char *data) 103{ 104 /* we probably want a lot more here */ 105 *flags |= MS_RDONLY; 106 return 0; 107} --- 1345 unchanged lines hidden --- |