Whamcloud - gitweb
* 1st attempt to prevent duplicate devices being started.
[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 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 #include <linux/obd_support.h>
24 #include <linux/obd_class.h>
25 #include <linux/lprocfs.h>
26 #include <linux/string.h>
27 #include <linux/lustre_lib.h>
28
29 int rd_uuid(char* page, char **start, off_t off,
30                int count, int *eof, void *data)
31 {
32         int len=0;
33         struct obd_device* dev=(struct obd_device*)data;
34         len+=snprintf(page, count, "%s\n", dev->obd_uuid);
35         return len;
36
37         
38
39 }
40 int rd_blksize(char* page, char **start, off_t off,
41                int count, int *eof, void *data)
42 {
43         struct obd_device* temp=(struct obd_device*)data;
44         struct statfs mystats;
45
46         int rc, len=0;
47
48         rc = vfs_statfs(temp->u.filter.fo_sb, &mystats);
49         if (rc) {
50                 CERROR("obdfilter: statfs failed: rc %d\n", rc);
51                 return 0;
52         }
53         len+=snprintf(page, count, LPU64"\n", (__u64)(mystats.f_bsize)); 
54         return len;
55         
56
57 }
58 int rd_blktotal(char* page, char **start, off_t off,
59                 int count, int *eof, void *data)
60 {
61         struct obd_device* temp=(struct obd_device*)data;
62         struct statfs mystats;
63
64         int rc, len=0;
65
66         rc = vfs_statfs(temp->u.filter.fo_sb, &mystats);
67         if (rc) {
68                 CERROR("obdfilter: statfs failed: rc %d\n", rc);
69                 return 0;
70         }
71         len+=snprintf(page, count, LPU64"\n", (__u64)(mystats.f_blocks)); 
72         return len;   
73 }
74
75 int rd_blkfree(char* page, char **start, off_t off,
76                int count, int *eof, void *data)
77 {
78         struct obd_device* temp=(struct obd_device*)data;
79         struct statfs mystats;
80
81         int rc, len=0;
82
83         rc = vfs_statfs(temp->u.filter.fo_sb, &mystats);
84         if (rc) {
85                 CERROR("obdfilter: statfs failed: rc %d\n", rc);
86                 return 0;
87         }
88         len+=snprintf(page, count, LPU64"\n", (__u64)(mystats.f_bfree)); 
89         return len;     
90 }
91
92 int rd_kbfree(char* page, char **start, off_t off,
93               int count, int *eof, void *data)
94
95         struct obd_device* temp=(struct obd_device*)data;
96         struct statfs mystats;
97
98         int rc, len=0, blk_size=0;
99
100         rc = vfs_statfs(temp->u.filter.fo_sb, &mystats);
101         if (rc) {
102                 CERROR("obdfilter: statfs failed: rc %d\n", rc);
103                 return 0;
104         }
105         blk_size=mystats.f_bsize;
106
107         len+=snprintf(page, count, LPU64"\n", \
108                       (__u64)((mystats.f_bfree)/(blk_size*1024))); 
109         return len;
110                 
111 }
112
113 int rd_fstype(char* page, char **start, off_t off,
114                   int count, int *eof, void *data)
115 {
116         
117         struct obd_device* temp=(struct obd_device*)data;
118         int len=0;
119         
120         len+=snprintf(page, count, "%s\n", temp->u.filter.fo_fstype);
121         return len;
122         
123 }
124
125 lprocfs_vars_t snmp_var_nm_1[]={
126         {"snmp/uuid", rd_uuid, 0},
127         {"snmp/f_blocksize",rd_blksize, 0},
128         {"snmp/f_blockstotal",rd_blktotal, 0},
129         {"snmp/f_blocksfree",rd_blkfree, 0},
130         {"snmp/f_kbytesfree", rd_kbfree, 0},
131         {"snmp/f_fstype", rd_fstype, 0},
132         {0}
133 };