Go to the documentation of this file.
22 #include <linux/compiler.h>
23 #include <linux/kernel.h>
24 #include <linux/sched.h>
36 #define kdebug(FMT, ...) \
38 if (unlikely(dns_resolver_debug)) \
39 printk(KERN_DEBUG "[%-6.6s] "FMT"\n", \
40 current->comm, ##__VA_ARGS__); \
43 #define kenter(FMT, ...) kdebug("==> %s("FMT")", __func__, ##__VA_ARGS__)
44 #define kleave(FMT, ...) kdebug("<== %s()"FMT"", __func__, ##__VA_ARGS__)