Whamcloud - gitweb
land 0.5.20.3 b_devel onto HEAD (b_devel will remain)
[fs/lustre-release.git] / lustre / osc / lproc_osc.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 Lustre, http://www.lustre.org.
7  *
8  *   Lustre is free software; you can redistribute it and/or
9  *   modify it under the terms of version 2 of the GNU General Public
10  *   License as published by the Free Software Foundation.
11  *
12  *   Lustre is distributed in the hope that it will be useful,
13  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *   GNU General Public License for more details.
16  *
17  *   You should have received a copy of the GNU General Public License
18  *   along with Lustre; if not, write to the Free Software
19  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20  *
21  */
22 #define DEBUG_SUBSYSTEM S_CLASS
23
24 #include <linux/version.h>
25 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
26 #include <asm/statfs.h>
27 #endif
28 #include <linux/obd_class.h>
29 #include <linux/lprocfs_status.h>
30
31 #ifndef LPROCFS
32 struct lprocfs_vars lprocfs_obd_vars[]  = { {0} };
33 struct lprocfs_vars lprocfs_module_vars[] = { {0} };
34 #else
35
36 DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     obd_self_statfs);
37 DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, obd_self_statfs);
38 DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  obd_self_statfs);
39 DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  obd_self_statfs);
40 DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   obd_self_statfs);
41 DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  obd_self_statfs);
42
43 struct lprocfs_vars lprocfs_obd_vars[] = {
44         { "uuid",            lprocfs_rd_uuid, 0, 0 },
45         { "blocksize",       rd_blksize, 0, 0 },
46         { "kbytestotal",     rd_kbytestotal, 0, 0 },
47         { "kbytesfree",      rd_kbytesfree, 0, 0 },
48         { "filestotal",      rd_filestotal, 0, 0 },
49         { "filesfree",       rd_filesfree, 0, 0   },
50         { "filegroups",      rd_filegroups, 0, 0 },
51         { "ost_server_uuid", lprocfs_rd_server_uuid, 0, 0 },
52         { "ost_conn_uuid",   lprocfs_rd_conn_uuid, 0, 0 },
53         { 0 }
54 };
55
56 struct lprocfs_vars lprocfs_module_vars[] = {
57         { "num_refs",        lprocfs_rd_numrefs, 0, 0 },
58         { 0 }
59 };
60
61 #endif /* LPROCFS */
62 LPROCFS_INIT_VARS(lprocfs_module_vars, lprocfs_obd_vars)