]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/dynamic_debug.h
uio: Support physical addresses >32 bits on 32-bit systems
[mirror_ubuntu-bionic-kernel.git] / include / linux / dynamic_debug.h
CommitLineData
e9d376f0
JB
1#ifndef _DYNAMIC_DEBUG_H
2#define _DYNAMIC_DEBUG_H
3
e9d376f0
JB
4/*
5 * An instance of this structure is created in a special
6 * ELF section at every dynamic debug callsite. At runtime,
7 * the special section is treated as an array of these.
8 */
9struct _ddebug {
10 /*
11 * These fields are used to drive the user interface
12 * for selecting and displaying debug callsites.
13 */
14 const char *modname;
15 const char *function;
16 const char *filename;
17 const char *format;
e9d376f0
JB
18 unsigned int lineno:24;
19 /*
20 * The flags field controls the behaviour at the callsite.
21 * The bits here are changed dynamically when the user
2b2f68b5 22 * writes commands to <debugfs>/dynamic_debug/control
e9d376f0
JB
23 */
24#define _DPRINTK_FLAGS_PRINT (1<<0) /* printk() a message using the format */
8ba6ebf5
BVA
25#define _DPRINTK_FLAGS_INCL_MODNAME (1<<1)
26#define _DPRINTK_FLAGS_INCL_FUNCNAME (1<<2)
27#define _DPRINTK_FLAGS_INCL_LINENO (1<<3)
28#define _DPRINTK_FLAGS_INCL_TID (1<<4)
e9d376f0
JB
29#define _DPRINTK_FLAGS_DEFAULT 0
30 unsigned int flags:8;
52159d98 31 char enabled;
e9d376f0
JB
32} __attribute__((aligned(8)));
33
34
35int ddebug_add_module(struct _ddebug *tab, unsigned int n,
36 const char *modname);
37
38#if defined(CONFIG_DYNAMIC_DEBUG)
ff49d74a 39extern int ddebug_remove_module(const char *mod_name);
8ba6ebf5
BVA
40extern int __dynamic_pr_debug(struct _ddebug *descriptor, const char *fmt, ...)
41 __attribute__ ((format (printf, 2, 3)));
e9d376f0 42
cbc46635
JP
43struct device;
44
45extern int __dynamic_dev_dbg(struct _ddebug *descriptor,
46 const struct device *dev,
47 const char *fmt, ...)
48 __attribute__ ((format (printf, 3, 4)));
49
ffa10cb4
JB
50struct net_device;
51
52extern int __dynamic_netdev_dbg(struct _ddebug *descriptor,
53 const struct net_device *dev,
54 const char *fmt, ...)
55 __attribute__ ((format (printf, 3, 4)));
56
e9d376f0
JB
57#define dynamic_pr_debug(fmt, ...) do { \
58 static struct _ddebug descriptor \
59 __used \
60 __attribute__((section("__verbose"), aligned(8))) = \
52159d98
JB
61 { KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__, \
62 _DPRINTK_FLAGS_DEFAULT }; \
2d75af2f 63 if (unlikely(descriptor.enabled)) \
8ba6ebf5 64 __dynamic_pr_debug(&descriptor, pr_fmt(fmt), ##__VA_ARGS__); \
e9d376f0
JB
65 } while (0)
66
e9d376f0
JB
67#define dynamic_dev_dbg(dev, fmt, ...) do { \
68 static struct _ddebug descriptor \
69 __used \
70 __attribute__((section("__verbose"), aligned(8))) = \
52159d98
JB
71 { KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__, \
72 _DPRINTK_FLAGS_DEFAULT }; \
2d75af2f 73 if (unlikely(descriptor.enabled)) \
cbc46635 74 __dynamic_dev_dbg(&descriptor, dev, fmt, ##__VA_ARGS__); \
e9d376f0
JB
75 } while (0)
76
ffa10cb4
JB
77#define dynamic_netdev_dbg(dev, fmt, ...) do { \
78 static struct _ddebug descriptor \
79 __used \
80 __attribute__((section("__verbose"), aligned(8))) = \
81 { KBUILD_MODNAME, __func__, __FILE__, fmt, __LINE__, \
82 _DPRINTK_FLAGS_DEFAULT }; \
83 if (unlikely(descriptor.enabled)) \
84 __dynamic_netdev_dbg(&descriptor, dev, fmt, ##__VA_ARGS__);\
85 } while (0)
86
e9d376f0
JB
87#else
88
ff49d74a 89static inline int ddebug_remove_module(const char *mod)
e9d376f0
JB
90{
91 return 0;
92}
93
00b55864
JP
94#define dynamic_pr_debug(fmt, ...) \
95 do { if (0) printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__); } while (0)
be70e267 96#define dynamic_dev_dbg(dev, fmt, ...) \
00b55864 97 do { if (0) dev_printk(KERN_DEBUG, dev, fmt, ##__VA_ARGS__); } while (0)
e9d376f0
JB
98#endif
99
100#endif