Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[cris-mirror.git] / include / linux / ceph / ceph_debug.h
blobd5a5da838cafa4c6c31cc58445e2e6f3b3ba0f99
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _FS_CEPH_DEBUG_H
3 #define _FS_CEPH_DEBUG_H
5 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7 #include <linux/string.h>
9 #ifdef CONFIG_CEPH_LIB_PRETTYDEBUG
12 * wrap pr_debug to include a filename:lineno prefix on each line.
13 * this incurs some overhead (kernel size and execution time) due to
14 * the extra function call at each call site.
17 # if defined(DEBUG) || defined(CONFIG_DYNAMIC_DEBUG)
18 # define dout(fmt, ...) \
19 pr_debug("%.*s %12.12s:%-4d : " fmt, \
20 8 - (int)sizeof(KBUILD_MODNAME), " ", \
21 kbasename(__FILE__), __LINE__, ##__VA_ARGS__)
22 # else
23 /* faux printk call just to see any compiler warnings. */
24 # define dout(fmt, ...) do { \
25 if (0) \
26 printk(KERN_DEBUG fmt, ##__VA_ARGS__); \
27 } while (0)
28 # endif
30 #else
33 * or, just wrap pr_debug
35 # define dout(fmt, ...) pr_debug(" " fmt, ##__VA_ARGS__)
37 #endif
39 #endif