diff options
Diffstat (limited to 'fs/isofs/isofs.h')
-rw-r--r-- | fs/isofs/isofs.h | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h index 38c75151fc66..b87ba066f5e7 100644 --- a/fs/isofs/isofs.h +++ b/fs/isofs/isofs.h | |||
@@ -175,18 +175,6 @@ isofs_normalize_block_and_offset(struct iso_directory_record* de, | |||
175 | } | 175 | } |
176 | 176 | ||
177 | extern struct inode_operations isofs_dir_inode_operations; | 177 | extern struct inode_operations isofs_dir_inode_operations; |
178 | extern struct file_operations isofs_dir_operations; | 178 | extern const struct file_operations isofs_dir_operations; |
179 | extern struct address_space_operations isofs_symlink_aops; | 179 | extern struct address_space_operations isofs_symlink_aops; |
180 | extern struct export_operations isofs_export_ops; | 180 | extern struct export_operations isofs_export_ops; |
181 | |||
182 | /* The following macros are used to check for memory leaks. */ | ||
183 | #ifdef LEAK_CHECK | ||
184 | #define free_s leak_check_free_s | ||
185 | #define malloc leak_check_malloc | ||
186 | #define sb_bread leak_check_bread | ||
187 | #define brelse leak_check_brelse | ||
188 | extern void * leak_check_malloc(unsigned int size); | ||
189 | extern void leak_check_free_s(void * obj, int size); | ||
190 | extern struct buffer_head * leak_check_bread(struct super_block *sb, int block); | ||
191 | extern void leak_check_brelse(struct buffer_head * bh); | ||
192 | #endif /* LEAK_CHECK */ | ||