appletalk: remove the BKL
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / dynamic_debug.h
blob1c70028f81f902321ea9e99ccff1619e48911f30
1 #ifndef _DYNAMIC_DEBUG_H
2 #define _DYNAMIC_DEBUG_H
4 #include <linux/jump_label.h>
6 /* dynamic_printk_enabled, and dynamic_printk_enabled2 are bitmasks in which
7 * bit n is set to 1 if any modname hashes into the bucket n, 0 otherwise. They
8 * use independent hash functions, to reduce the chance of false positives.
9 */
10 extern long long dynamic_debug_enabled;
11 extern long long dynamic_debug_enabled2;
14 * An instance of this structure is created in a special
15 * ELF section at every dynamic debug callsite. At runtime,
16 * the special section is treated as an array of these.
18 struct _ddebug {
20 * These fields are used to drive the user interface
21 * for selecting and displaying debug callsites.
23 const char *modname;
24 const char *function;
25 const char *filename;
26 const char *format;
27 unsigned int lineno:24;
29 * The flags field controls the behaviour at the callsite.
30 * The bits here are changed dynamically when the user
31 * writes commands to <debugfs>/dynamic_debug/control
33 #define _DPRINTK_FLAGS_PRINT (1<<0) /* printk() a message using the format */
34 #define _DPRINTK_FLAGS_DEFAULT 0
35 unsigned int flags:8;
36 char enabled;
37 } __attribute__((aligned(8)));
40 int ddebug_add_module(struct _ddebug *tab, unsigned int n,
41 const char *modname);
43 #if defined(CONFIG_DYNAMIC_DEBUG)
44 extern int ddebug_remove_module(const char *mod_name);
46 #define dynamic_pr_debug(fmt, ...) do { \
47 static struct _ddebug descriptor \
48 __used \
49 __attribute__((section("__verbose"), aligned(8))) = \
50 { KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__, \
51 _DPRINTK_FLAGS_DEFAULT }; \
52 if (unlikely(descriptor.enabled)) \
53 printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); \
54 } while (0)
57 #define dynamic_dev_dbg(dev, fmt, ...) do { \
58 static struct _ddebug descriptor \
59 __used \
60 __attribute__((section("__verbose"), aligned(8))) = \
61 { KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__, \
62 _DPRINTK_FLAGS_DEFAULT }; \
63 if (unlikely(descriptor.enabled)) \
64 dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); \
65 } while (0)
67 #else
69 static inline int ddebug_remove_module(const char *mod)
71 return 0;
74 #define dynamic_pr_debug(fmt, ...) \
75 do { if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); } while (0)
76 #define dynamic_dev_dbg(dev, fmt, ...) \
77 do { if (0) dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); } while (0)
78 #endif
80 #endif