Whamcloud - gitweb
land 0.5.20.3 b_devel onto HEAD (b_devel will remain)
[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/version.h>
25 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
26 #include <asm/statfs.h>
27 #endif
28 #include <linux/lustre_lite.h>
29 #include <linux/lustre_fsfilt.h>
30 #include <linux/lprocfs_status.h>
31
32 #ifndef LPROCFS
33 struct lprocfs_vars lprocfs_mds_obd_vars[]  = { {0} };
34 struct lprocfs_vars lprocfs_mds_module_vars[] = { {0} };
35 struct lprocfs_vars lprocfs_mdt_obd_vars[] = { {0} };
36 struct lprocfs_vars lprocfs_mdt_module_vars[] = { {0} };
37
38 #else
39
40 static inline
41 int lprocfs_mds_statfs(void *data, struct statfs *sfs)
42 {
43         struct obd_device* dev = (struct obd_device*) data;
44         struct mds_obd *mds;
45
46         LASSERT(dev != NULL);
47         mds = &dev->u.mds;
48         return vfs_statfs(mds->mds_sb, sfs);
49 }
50
51 DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     lprocfs_mds_statfs);
52 DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, lprocfs_mds_statfs);
53 DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  lprocfs_mds_statfs);
54 DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  lprocfs_mds_statfs);
55 DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   lprocfs_mds_statfs);
56 DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  lprocfs_mds_statfs);
57
58 int rd_fstype(char *page, char **start, off_t off, int count, int *eof,
59               void *data)
60 {
61         struct obd_device *obd = (struct obd_device *)data;
62
63         LASSERT(obd != NULL);
64         LASSERT(obd->obd_fsops != NULL);
65         LASSERT(obd->obd_fsops->fs_type != NULL);
66         return snprintf(page, count, "%s\n", obd->obd_fsops->fs_type);
67 }
68
69
70 struct lprocfs_vars lprocfs_mds_obd_vars[] = {
71         { "uuid",       lprocfs_rd_uuid, 0, 0 },
72         { "blocksize",  rd_blksize,      0, 0 },
73         { "bytestotal", rd_kbytestotal,  0, 0 },
74         { "kbytesfree", rd_kbytesfree,   0, 0 },
75         { "fstype",     rd_fstype,       0, 0 },
76         { "filestotal", rd_filestotal,   0, 0 },
77         { "filesfree",  rd_filesfree,    0, 0 },
78         { "filegroups", rd_filegroups,   0, 0 },
79         { 0 }
80 };
81
82 struct lprocfs_vars lprocfs_mds_module_vars[] = {
83         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
84         { 0 }
85 };
86
87 struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
88         { "uuid",       lprocfs_rd_uuid, 0, 0 },
89         { 0 }
90 };
91
92 struct lprocfs_vars lprocfs_mdt_module_vars[] = {
93         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
94         { 0 }
95 };
96
97 #endif
98 struct lprocfs_static_vars lprocfs_array_vars[] = { {lprocfs_mds_module_vars,
99                                                      lprocfs_mds_obd_vars},
100                                                     {lprocfs_mdt_module_vars,
101                                                      lprocfs_mdt_obd_vars}};
102
103 LPROCFS_INIT_MULTI_VARS(lprocfs_array_vars,
104                         (sizeof(lprocfs_array_vars)/
105                          sizeof(struct lprocfs_static_vars)))