summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/kernel/ceph_debug.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/kernel/ceph_debug.h b/src/kernel/ceph_debug.h
index c5cfaece18d..2add05c27f8 100644
--- a/src/kernel/ceph_debug.h
+++ b/src/kernel/ceph_debug.h
@@ -83,21 +83,4 @@ extern int ceph_debug_tools __read_mostly;
#define dout(x, args...) _dout(x, args, TRAIL_PARAM)
#define derr(x, args...) _derr(x, args, TRAIL_PARAM)
-/* dcache d_count debugging */
-#if 0
-# define dput(dentry) \
- do { \
- dout(20, "dput %p %d -> %d\n", dentry, \
- atomic_read(&dentry->d_count), \
- atomic_read(&dentry->d_count)-1); \
- dput(dentry); \
- } while (0)
-# define d_drop(dentry) \
- do { \
- dout(20, "d_drop %p\n", dentry); \
- d_drop(dentry); \
- } while (0)
-#endif
-
-
#endif