Whamcloud - gitweb
- merge 0.7rc1 from b_devel to HEAD (20030612 merge point)
[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 int lprocfs_mds_statfs(void *data, struct statfs *sfs)
41 {
42         struct obd_device* dev = (struct obd_device*) data;
43         struct mds_obd *mds;
44
45         LASSERT(dev != NULL);
46         mds = &dev->u.mds;
47         return vfs_statfs(mds->mds_sb, sfs);
48 }
49
50 DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     lprocfs_mds_statfs);
51 DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, lprocfs_mds_statfs);
52 DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  lprocfs_mds_statfs);
53 DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  lprocfs_mds_statfs);
54 DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   lprocfs_mds_statfs);
55 DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  lprocfs_mds_statfs);
56
57 int rd_fstype(char *page, char **start, off_t off, int count, int *eof,
58               void *data)
59 {
60         struct obd_device *obd = (struct obd_device *)data;
61
62         LASSERT(obd != NULL);
63         LASSERT(obd->obd_fsops != NULL);
64         LASSERT(obd->obd_fsops->fs_type != NULL);
65         return snprintf(page, count, "%s\n", obd->obd_fsops->fs_type);
66 }
67
68 int lprocfs_mds_rd_mntdev(char *page, char **start, off_t off, int count,
69                           int *eof, void *data)
70 {
71         struct obd_device* obd = (struct obd_device *)data;
72
73         LASSERT(obd != NULL);
74         LASSERT(obd->u.mds.mds_vfsmnt->mnt_devname);
75         *eof = 1;
76         return snprintf(page, count, "%s\n",
77                         obd->u.mds.mds_vfsmnt->mnt_devname);
78 }
79
80 struct lprocfs_vars lprocfs_mds_obd_vars[] = {
81         { "uuid",       lprocfs_rd_uuid, 0, 0 },
82         { "blocksize",  rd_blksize,      0, 0 },
83         { "kbytestotal",rd_kbytestotal,  0, 0 },
84         { "kbytesfree", rd_kbytesfree,   0, 0 },
85         { "fstype",     rd_fstype,       0, 0 },
86         { "filestotal", rd_filestotal,   0, 0 },
87         { "filesfree",  rd_filesfree,    0, 0 },
88         { "filegroups", rd_filegroups,   0, 0 },
89         { "mntdev",     lprocfs_mds_rd_mntdev,    0, 0 },
90         { 0 }
91 };
92
93 struct lprocfs_vars lprocfs_mds_module_vars[] = {
94         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
95         { 0 }
96 };
97
98 struct lprocfs_vars lprocfs_mdt_obd_vars[] = {
99         { "uuid",       lprocfs_rd_uuid, 0, 0 },
100         { 0 }
101 };
102
103 struct lprocfs_vars lprocfs_mdt_module_vars[] = {
104         { "num_refs",   lprocfs_rd_numrefs, 0, 0 },
105         { 0 }
106 };
107
108 #endif
109 struct lprocfs_static_vars lprocfs_array_vars[] = { {lprocfs_mds_module_vars,
110                                                      lprocfs_mds_obd_vars},
111                                                     {lprocfs_mdt_module_vars,
112                                                      lprocfs_mdt_obd_vars}};
113
114 LPROCFS_INIT_MULTI_VARS(lprocfs_array_vars,
115                         (sizeof(lprocfs_array_vars) /
116                          sizeof(struct lprocfs_static_vars)))