Whamcloud - gitweb
* obdfs/flushd.c: conditionalized number of C_DEBUG messages.
[fs/lustre-release.git] / lustre / include / linux / obd_trace.h
1 /*
2  * obdtrace (header file) - is useful for tracing and performance
3  * debug of the Lustre obd protocol stack. obdtrace is a transparent
4  * logical obd driver that prints commands their in- and outbound
5  * parameters.  obdtrace maintains statistics about number and latency
6  * of the obd commands that pass through it. As such it is also use
7  * for performance analysis.
8  *
9  * Copyright (c) 2001  Rumi Zahir <rumi.zahir@intel.com>
10  */
11
12 #ifndef __OBD_TRACE_H
13 #define __OBD_TRACE_H
14
15 struct obd_device;
16 struct obdtrace_opstats;
17
18 struct trace_obd {
19   struct obdtrace_opstats *stats;
20 };
21
22 #endif