Whamcloud - gitweb
branch: HEAD
[fs/lustre-release.git] / lustre / ost / lproc_ost.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002, 2003 Cluster File Systems, Inc.
5  *
6  *   This file is part of the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  *
24  */
25 #define DEBUG_SUBSYSTEM S_OST
26
27 #include <obd_class.h>
28 #include <lprocfs_status.h>
29 #include <linux/seq_file.h>
30 #include "ost_internal.h"
31
32 #ifdef LPROCFS
33 static struct lprocfs_vars lprocfs_ost_obd_vars[] = {
34         { "uuid",            lprocfs_rd_uuid,   0, 0 },
35         { 0 }
36 };
37
38 static struct lprocfs_vars lprocfs_ost_module_vars[] = {
39         { "num_refs",       lprocfs_rd_numrefs, 0, 0 },
40         { 0 }
41 };
42
43 void lprocfs_ost_init_vars(struct lprocfs_static_vars *lvars)
44 {
45     lvars->module_vars  = lprocfs_ost_module_vars;
46     lvars->obd_vars     = lprocfs_ost_obd_vars;
47 }
48
49 #endif /* LPROCFS */