super.c (f8314dc60ccba7e41f425048c4160dc7f63377d5) | super.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b) |
---|---|
1/* 2 * linux/fs/ext2/super.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 170 unchanged lines hidden (view full) --- 179 init_once, NULL); 180 if (ext2_inode_cachep == NULL) 181 return -ENOMEM; 182 return 0; 183} 184 185static void destroy_inodecache(void) 186{ | 1/* 2 * linux/fs/ext2/super.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 170 unchanged lines hidden (view full) --- 179 init_once, NULL); 180 if (ext2_inode_cachep == NULL) 181 return -ENOMEM; 182 return 0; 183} 184 185static void destroy_inodecache(void) 186{ |
187 if (kmem_cache_destroy(ext2_inode_cachep)) 188 printk(KERN_INFO "ext2_inode_cache: not all structures were freed\n"); | 187 kmem_cache_destroy(ext2_inode_cachep); |
189} 190 191static void ext2_clear_inode(struct inode *inode) 192{ 193#ifdef CONFIG_EXT2_FS_POSIX_ACL 194 struct ext2_inode_info *ei = EXT2_I(inode); 195 196 if (ei->i_acl && ei->i_acl != EXT2_ACL_NOT_CACHED) { --- 1084 unchanged lines hidden --- | 188} 189 190static void ext2_clear_inode(struct inode *inode) 191{ 192#ifdef CONFIG_EXT2_FS_POSIX_ACL 193 struct ext2_inode_info *ei = EXT2_I(inode); 194 195 if (ei->i_acl && ei->i_acl != EXT2_ACL_NOT_CACHED) { --- 1084 unchanged lines hidden --- |