Whamcloud - gitweb
- merge 0.7rc1 from b_devel to HEAD (20030612 merge point)
[fs/lustre-release.git] / lustre / obdfilter / lproc_obdfilter.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/lprocfs_status.h>
29 #include <linux/obd.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 static inline int lprocfs_filter_statfs(void *data, struct statfs *sfs)
37 {
38         struct obd_device *dev = (struct obd_device *) data;
39         LASSERT(dev != NULL);
40         return vfs_statfs(dev->u.filter.fo_sb, sfs);
41 }
42
43 DEFINE_LPROCFS_STATFS_FCT(rd_blksize,     lprocfs_filter_statfs);
44 DEFINE_LPROCFS_STATFS_FCT(rd_kbytestotal, lprocfs_filter_statfs);
45 DEFINE_LPROCFS_STATFS_FCT(rd_kbytesfree,  lprocfs_filter_statfs);
46 DEFINE_LPROCFS_STATFS_FCT(rd_filestotal,  lprocfs_filter_statfs);
47 DEFINE_LPROCFS_STATFS_FCT(rd_filesfree,   lprocfs_filter_statfs);
48 DEFINE_LPROCFS_STATFS_FCT(rd_filegroups,  lprocfs_filter_statfs);
49
50 int rd_fstype(char *page, char **start, off_t off, int count, int *eof,
51               void *data)
52 {
53         struct obd_device *dev = (struct obd_device *)data;
54         LASSERT(dev != NULL);
55         return snprintf(page, count, "%s\n", dev->u.filter.fo_fstype);
56 }
57
58 int lprocfs_filter_rd_mntdev(char *page, char **start, off_t off, int count,
59                     int *eof, void *data)
60 {
61         struct obd_device* obd = (struct obd_device *)data;
62
63         LASSERT(obd != NULL);
64         LASSERT(obd->u.filter.fo_vfsmnt->mnt_devname);
65         *eof = 1;
66         return snprintf(page, count, "%s\n", 
67                         obd->u.filter.fo_vfsmnt->mnt_devname);
68 }
69
70 struct lprocfs_vars lprocfs_obd_vars[] = {
71         { "uuid",        lprocfs_rd_uuid,    0, 0 },
72         { "blocksize",   rd_blksize,         0, 0 },
73         { "kbytestotal", rd_kbytestotal,     0, 0 },
74         { "kbytesfree",  rd_kbytesfree,      0, 0 },
75         { "filestotal",  rd_filestotal,      0, 0 },
76         { "filesfree",   rd_filesfree,       0, 0 },
77         { "filegroups",  rd_filegroups,      0, 0 },
78         { "fstype",      rd_fstype,          0, 0 },
79         { "mntdev",      lprocfs_filter_rd_mntdev,    0, 0 },
80         { 0 }
81 };
82
83 struct lprocfs_vars lprocfs_module_vars[] = {
84         { "num_refs",    lprocfs_rd_numrefs, 0, 0 },
85         { 0 }
86 };
87
88 #endif /* LPROCFS */
89 LPROCFS_INIT_VARS(lprocfs_module_vars, lprocfs_obd_vars)