| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 1 | #ifndef _DYNAMIC_DEBUG_H | 
 | 2 | #define _DYNAMIC_DEBUG_H | 
 | 3 |  | 
 | 4 | /* dynamic_printk_enabled, and dynamic_printk_enabled2 are bitmasks in which | 
 | 5 |  * bit n is set to 1 if any modname hashes into the bucket n, 0 otherwise. They | 
 | 6 |  * use independent hash functions, to reduce the chance of false positives. | 
 | 7 |  */ | 
 | 8 | extern long long dynamic_debug_enabled; | 
 | 9 | extern long long dynamic_debug_enabled2; | 
 | 10 |  | 
 | 11 | /* | 
 | 12 |  * An instance of this structure is created in a special | 
 | 13 |  * ELF section at every dynamic debug callsite.  At runtime, | 
 | 14 |  * the special section is treated as an array of these. | 
 | 15 |  */ | 
 | 16 | struct _ddebug { | 
 | 17 | 	/* | 
 | 18 | 	 * These fields are used to drive the user interface | 
 | 19 | 	 * for selecting and displaying debug callsites. | 
 | 20 | 	 */ | 
 | 21 | 	const char *modname; | 
 | 22 | 	const char *function; | 
 | 23 | 	const char *filename; | 
 | 24 | 	const char *format; | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 25 | 	unsigned int lineno:24; | 
 | 26 | 	/* | 
 | 27 |  	 * The flags field controls the behaviour at the callsite. | 
 | 28 |  	 * The bits here are changed dynamically when the user | 
| Florian Ragwitz | 2b2f68b | 2010-05-24 14:33:21 -0700 | [diff] [blame] | 29 | 	 * writes commands to <debugfs>/dynamic_debug/control | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 30 | 	 */ | 
 | 31 | #define _DPRINTK_FLAGS_PRINT   (1<<0)  /* printk() a message using the format */ | 
| Bart Van Assche | 8ba6ebf | 2011-01-23 17:17:24 +0100 | [diff] [blame] | 32 | #define _DPRINTK_FLAGS_INCL_MODNAME	(1<<1) | 
 | 33 | #define _DPRINTK_FLAGS_INCL_FUNCNAME	(1<<2) | 
 | 34 | #define _DPRINTK_FLAGS_INCL_LINENO	(1<<3) | 
 | 35 | #define _DPRINTK_FLAGS_INCL_TID		(1<<4) | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 36 | #define _DPRINTK_FLAGS_DEFAULT 0 | 
 | 37 | 	unsigned int flags:8; | 
| Jason Baron | 52159d9 | 2010-09-17 11:09:17 -0400 | [diff] [blame] | 38 | 	char enabled; | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 39 | } __attribute__((aligned(8))); | 
 | 40 |  | 
 | 41 |  | 
 | 42 | int ddebug_add_module(struct _ddebug *tab, unsigned int n, | 
 | 43 | 				const char *modname); | 
 | 44 |  | 
 | 45 | #if defined(CONFIG_DYNAMIC_DEBUG) | 
| Yehuda Sadeh | ff49d74 | 2010-07-03 13:07:35 +1000 | [diff] [blame] | 46 | extern int ddebug_remove_module(const char *mod_name); | 
| Bart Van Assche | 8ba6ebf | 2011-01-23 17:17:24 +0100 | [diff] [blame] | 47 | extern int __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...) | 
 | 48 | 	__attribute__ ((format (printf, 2, 3))); | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 49 |  | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 50 | #define dynamic_pr_debug(fmt, ...) do {					\ | 
 | 51 | 	static struct _ddebug descriptor				\ | 
 | 52 | 	__used								\ | 
 | 53 | 	__attribute__((section("__verbose"), aligned(8))) =		\ | 
| Jason Baron | 52159d9 | 2010-09-17 11:09:17 -0400 | [diff] [blame] | 54 | 	{ KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__,		\ | 
 | 55 | 		_DPRINTK_FLAGS_DEFAULT };				\ | 
| Jason Baron | 2d75af2 | 2011-01-07 13:36:58 -0500 | [diff] [blame] | 56 | 	if (unlikely(descriptor.enabled))				\ | 
| Bart Van Assche | 8ba6ebf | 2011-01-23 17:17:24 +0100 | [diff] [blame] | 57 | 		__dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \ | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 58 | 	} while (0) | 
 | 59 |  | 
 | 60 |  | 
 | 61 | #define dynamic_dev_dbg(dev, fmt, ...) do {				\ | 
 | 62 | 	static struct _ddebug descriptor				\ | 
 | 63 | 	__used								\ | 
 | 64 | 	__attribute__((section("__verbose"), aligned(8))) =		\ | 
| Jason Baron | 52159d9 | 2010-09-17 11:09:17 -0400 | [diff] [blame] | 65 | 	{ KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__,		\ | 
 | 66 | 		_DPRINTK_FLAGS_DEFAULT };				\ | 
| Jason Baron | 2d75af2 | 2011-01-07 13:36:58 -0500 | [diff] [blame] | 67 | 	if (unlikely(descriptor.enabled))				\ | 
 | 68 | 		dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__);	\ | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 69 | 	} while (0) | 
 | 70 |  | 
 | 71 | #else | 
 | 72 |  | 
| Yehuda Sadeh | ff49d74 | 2010-07-03 13:07:35 +1000 | [diff] [blame] | 73 | static inline int ddebug_remove_module(const char *mod) | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 74 | { | 
 | 75 | 	return 0; | 
 | 76 | } | 
 | 77 |  | 
| Joe Perches | 00b5586 | 2009-12-14 18:00:14 -0800 | [diff] [blame] | 78 | #define dynamic_pr_debug(fmt, ...)					\ | 
 | 79 | 	do { if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); } while (0) | 
| Philipp Reisner | be70e26 | 2010-10-14 11:58:20 +0200 | [diff] [blame] | 80 | #define dynamic_dev_dbg(dev, fmt, ...)					\ | 
| Joe Perches | 00b5586 | 2009-12-14 18:00:14 -0800 | [diff] [blame] | 81 | 	do { if (0) dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); } while (0) | 
| Jason Baron | e9d376f | 2009-02-05 11:51:38 -0500 | [diff] [blame] | 82 | #endif | 
 | 83 |  | 
 | 84 | #endif |