blob: 22577a8a8afccee744c55c8ec8c4879659208093 [file] [log] [blame]
Jens Axboea3d741f2008-02-27 18:32:33 +01001#ifndef FIO_DEBUG_H
2#define FIO_DEBUG_H
3
4#include <assert.h>
5#include "log.h"
6
7enum {
8 FD_PROCESS = 0,
9 FD_FILE,
10 FD_IO,
11 FD_MEM,
12 FD_BLKTRACE,
13 FD_VERIFY,
14 FD_RANDOM,
15 FD_PARSE,
Jens Axboecd991b92008-03-07 13:19:35 +010016 FD_DISKUTIL,
Jens Axboea3d741f2008-02-27 18:32:33 +010017 FD_DEBUG_MAX,
18};
19
20#ifdef FIO_INC_DEBUG
21struct debug_level {
22 const char *name;
23 unsigned long shift;
24};
25extern struct debug_level debug_levels[];
26
27extern unsigned long fio_debug;
28
29#define dprint(type, str, args...) \
30 do { \
31 assert(type < FD_DEBUG_MAX); \
32 if ((((1 << type)) & fio_debug) == 0) \
33 break; \
34 log_info("%-8s ", debug_levels[(type)].name); \
35 log_info(str, ##args); \
36 } while (0)
37
38#else
39
40#define dprint(type, str, args...)
41#endif
42
43#endif