debug.h 1.53 KB
Newer Older
J. R. Okajima's avatar
J. R. Okajima committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Copyright (C) 2005-2019 Junjiro R. Okajima
 */

/*
 * debug print functions
 */

#ifndef __AUFS_DEBUG_H__
#define __AUFS_DEBUG_H__

#ifdef __KERNEL__

J. R. Okajima's avatar
J. R. Okajima committed
15
16
17
#include <linux/atomic.h>
#include <linux/module.h>

J. R. Okajima's avatar
J. R. Okajima committed
18
19
#ifdef CONFIG_AUFS_DEBUG
#define AuDebugOn(a)		BUG_ON(a)
J. R. Okajima's avatar
J. R. Okajima committed
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35

/* module parameter */
extern atomic_t aufs_debug;
static inline void au_debug_on(void)
{
	atomic_inc(&aufs_debug);
}
static inline void au_debug_off(void)
{
	atomic_dec_if_positive(&aufs_debug);
}

static inline int au_debug_test(void)
{
	return atomic_read(&aufs_debug) > 0;
}
J. R. Okajima's avatar
J. R. Okajima committed
36
37
#else
#define AuDebugOn(a)		do {} while (0)
J. R. Okajima's avatar
J. R. Okajima committed
38
39
40
AuStubVoid(au_debug_on, void)
AuStubVoid(au_debug_off, void)
AuStubInt0(au_debug_test, void)
J. R. Okajima's avatar
J. R. Okajima committed
41
42
#endif /* CONFIG_AUFS_DEBUG */

J. R. Okajima's avatar
J. R. Okajima committed
43
44
#define param_check_atomic_t(name, p) __param_check(name, p, atomic_t)

J. R. Okajima's avatar
J. R. Okajima committed
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/* ---------------------------------------------------------------------- */

/* debug print */

#define AuDbg(fmt, ...) do { \
	if (au_debug_test()) \
		pr_debug("DEBUG: " fmt, ##__VA_ARGS__); \
} while (0)
#define AuLabel(l)		AuDbg(#l "\n")

/* ---------------------------------------------------------------------- */

struct dentry;
#ifdef CONFIG_AUFS_DEBUG
extern struct mutex au_dbg_mtx;
extern char *au_plevel;
struct inode;
void au_dpri_inode(struct inode *inode);

#define AuDbgInode(i) do { \
	mutex_lock(&au_dbg_mtx); \
	AuDbg(#i "\n"); \
	au_dpri_inode(i); \
	mutex_unlock(&au_dbg_mtx); \
} while (0)
#else
#define AuDbgInode(i)		do {} while (0)
#endif /* CONFIG_AUFS_DEBUG */

J. R. Okajima's avatar
J. R. Okajima committed
74
75
#endif /* __KERNEL__ */
#endif /* __AUFS_DEBUG_H__ */