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