mirror of
https://github.com/torvalds/linux.git
synced 2024-11-08 13:11:45 +00:00
6beba7adbe
We were using eprintf in some places, that looks at a global 'verbose' level, and at other places passing a 'v' parameter to specify the verbosity level, unify it by introducing pr_{err,warning,debug,etc}, just like in the kernel. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Mike Galbraith <efault@gmx.de> LKML-Reference: <1256153646-10097-1-git-send-email-acme@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
14 lines
357 B
C
14 lines
357 B
C
/* For debugging general purposes */
|
|
#ifndef __PERF_DEBUG_H
|
|
#define __PERF_DEBUG_H
|
|
|
|
extern int verbose;
|
|
extern int dump_trace;
|
|
|
|
int eprintf(int level,
|
|
const char *fmt, ...) __attribute__((format(printf, 2, 3)));
|
|
int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
|
|
void trace_event(event_t *event);
|
|
|
|
#endif /* __PERF_DEBUG_H */
|