aboutsummaryrefslogtreecommitdiffstats
path: root/fs/isofs
diff options
context:
space:
mode:
authorPekka Enberg <penberg@cs.helsinki.fi>2006-03-24 06:16:14 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-24 10:33:24 -0500
commit5b3cf3e0f019fcfe1e0c26aedb4d54b5e5be3a7b (patch)
tree516fa7597b59dfdd934d7f35bc303a8fe578c420 /fs/isofs
parent53b3531bbbf70ac7551b32d1acc229d94de52658 (diff)
[PATCH] isofs: remove unused debugging macros
Remove unused debugging macros from isofs. The referred debug functions do not exist in the kernel. Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/isofs')
-rw-r--r--fs/isofs/isofs.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h
index 38c75151fc66..439a19b1bf3e 100644
--- a/fs/isofs/isofs.h
+++ b/fs/isofs/isofs.h
@@ -178,15 +178,3 @@ extern struct inode_operations isofs_dir_inode_operations;
178extern struct file_operations isofs_dir_operations; 178extern struct file_operations isofs_dir_operations;
179extern struct address_space_operations isofs_symlink_aops; 179extern struct address_space_operations isofs_symlink_aops;
180extern struct export_operations isofs_export_ops; 180extern 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
188extern void * leak_check_malloc(unsigned int size);
189extern void leak_check_free_s(void * obj, int size);
190extern struct buffer_head * leak_check_bread(struct super_block *sb, int block);
191extern void leak_check_brelse(struct buffer_head * bh);
192#endif /* LEAK_CHECK */