Re: [PATCH 2.6.17-rc4 1/6] Base support for kmemleak
- From: Paul Jackson <pj@xxxxxxx>
- Date: Sat, 13 May 2006 11:11:46 -0700
Please try to keep ifdef's out of the main kernel files.
Imagine what an unreadable mess the main kernel files
would be if every CONFIG option had its hooks wrapped
in #ifdef's.
==============================================
+#ifdef CONFIG_DEBUG_MEMLEAK
+#include <linux/memleak.h>
+#endif
should be changed to always include linux/memleak.h,
and bury the ifdefs with memleak.h so that if not
CONFIG'd, it just defines the empty stubs needed
to remove other ifdef's in the main files.
==============================================
+#ifdef CONFIG_DEBUG_MEMLEAK
+#define container_of(ptr, type, member) ({ \
+ DECLARE_MEMLEAK_OFFSET(container_of, type, member); \
+ __container_of(ptr, type, member); \
+})
+#else
+#define container_of(ptr, type, member) __container_of(ptr, type, member)
+#endif
could (not sure of this works - you'll have to experiment) become:
+#define container_of(ptr, type, member) ({ \
+ DECLARE_MEMLEAK_OFFSET(container_of, type, member); \
+ __container_of(ptr, type, member); \
+})
where DECLARE_MEMLEAK_OFFSET was an empty stub if not CONFIG'd
==============================================
+#ifdef CONFIG_DEBUG_MEMLEAK
+ memleak_init();
+#endif
becomes simply:
+ memleak_init();
where memleak_init() is an empty stuff if memleak if not CONFIG'd.
--
I won't rest till it's the best ...
Programmer, Linux Scalability
Paul Jackson <pj@xxxxxxx> 1.925.600.0401
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
- References:
- [RFC PATCH 2.6.17-rc4 0/6] Kernel memory leak detector
- From: Catalin Marinas
- [PATCH 2.6.17-rc4 1/6] Base support for kmemleak
- From: Catalin Marinas
- [RFC PATCH 2.6.17-rc4 0/6] Kernel memory leak detector
- Prev by Date: Re: rt20 scheduling latency testcase and failure data
- Next by Date: Re: [patch 00/14] remap_file_pages protection support
- Previous by thread: Re: [PATCH 2.6.17-rc4 1/6] Base support for kmemleak
- Next by thread: Re: [PATCH 2.6.17-rc4 1/6] Base support for kmemleak
- Index(es):