Whamcloud - gitweb
eab0cf7be8961f02c33c4910ec4b006dbeadbcee
[fs/lustre-release.git] / lustre / mds / lproc_mds.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (C) 2002 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/lustre_lite.h>
25 #include <linux/lustre_fsfilt.h>
26 #include <linux/lprocfs_status.h>
27
28 #ifndef LPROCFS
29 struct lprocfs_vars lprocfs_mds_obd_vars[]  = { {0} };
30 struct lprocfs_vars lprocfs_mds_module_vars[] = { {0} };
31 struct lprocfs_vars lprocfs_mdt_obd_vars[] = { {0} };
32 struct lprocfs_vars lprocfs_mdt_module_vars[] = { {0} };
33
34 #else
35
36 static inline
37 int lprocfs_mds_statfs(void *data, struct statfs *sfs)
38 {
39         struct obd_device* dev = (struct obd_device*) data;
40         struct mds_obd *mds = &dev->u.mds;
41         return vfs_statfs(mds->mds_sb, sfs);
42 }
43
44 DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     lprocfs_mds_statfs);
45 DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, lprocfs_mds_statfs);
46 DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  lprocfs_mds_statfs);
47 DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  lprocfs_mds_statfs);
48 DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   lprocfs_mds_statfs);
49 DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  lprocfs_mds_statfs);
50
51 int rd_fstype(char *page, char **start, off_t off, int count, int *eof,
52               void *data)
53 {
54         struct obd_device *obd = (struct obd_device *)data;
55
56         return snprintf(page, count, "%s\n", obd->obd_fsops->fs_type);
57 }
58
59
60 struct lprocfs_vars lprocfs_mds_obd_vars[] = {
61         { "uuid",       lprocfs_rd_uuid, 0, 0 },
62         { "blocksize",  rd_blksize,      0, 0 },
63         { "bytestotal", rd_kbytestotal,  0, 0 },
64         { "kbytesfree", rd_kbytesfree,   0, 0 },
65         { "fstype",     rd_fstype,       0, 0 },
66         { "filestotal", rd_filestotal,   0, 0 },
67         { "filesfree",  rd_filesfree,    0, 0 },
68         { "filegroups", rd_filegroups,   0, 0 },
69         { 0 }
70 };
71
72 struct lprocfs_vars lprocfs_mds_module_vars[] = {
73         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
74         { 0 }
75 };
76
77 struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
78         { "uuid",       lprocfs_rd_uuid, 0, 0 },
79         { 0 }
80 };
81
82 struct lprocfs_vars lprocfs_mdt_module_vars[] = {
83         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
84         { 0 }
85 };
86
87 #endif
88 struct lprocfs_static_vars lprocfs_array_vars[] = { {lprocfs_mds_module_vars,
89                                                      lprocfs_mds_obd_vars},
90                                                     {lprocfs_mdt_module_vars,
91                                                      lprocfs_mdt_obd_vars}};
92
93 LPROCFS_INIT_MULTI_VARS(lprocfs_array_vars,
94                         (sizeof(lprocfs_array_vars)/
95                          sizeof(struct lprocfs_static_vars)))