Whamcloud - gitweb
Name changes to make all file system statistics names common
[fs/lustre-release.git] / lustre / ost / lproc_ost.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_OST
23
24 #include <linux/lustre_lite.h>
25 #include <linux/lprocfs_status.h>
26
27
28 int rd_uuid(char* page, char **start, off_t off, int count, int *eof, 
29             void *data)
30 {
31          
32         struct obd_device* temp = (struct obd_device*)data;
33         int len = 0;
34         len += snprintf(page, count, "%s\n", temp->obd_uuid); 
35         return len;
36         
37
38 }
39 int rd_blksize(char* page, char **start, off_t off, int count, int *eof, 
40                void *data)
41 {
42         
43         struct obd_device* temp = (struct obd_device*)data;
44         struct ost_obd *ost = &temp->u.ost;
45         struct lustre_handle *conn = &ost->ost_conn;
46         struct obd_statfs mystats;
47         int len = 0;
48         
49         obd_statfs(conn, &mystats);
50         len += snprintf(page, count, "%d\n", mystats.os_bsize); 
51         return len;
52         
53 }
54 int rd_kbtotal(char* page, char **start, off_t off, int count, int *eof, 
55                void *data)
56 {
57         struct obd_device* temp = (struct obd_device*)data;
58         struct ost_obd *ost = &temp->u.ost;
59         struct lustre_handle *conn = &ost->ost_conn;
60         struct obd_statfs mystats;
61         int len = 0;
62         __u32 blk_size;
63         __u64 result;
64                 
65         obd_statfs(conn, &mystats);
66         blk_size = mystats.os_bsize;
67         blk_size >>= 10;
68         result = mystats.os_blocks;
69         while(blk_size >>= 1){
70                 result <<= 1;
71         }
72         len += snprintf(page, count, LPU64"\n", result);
73         return len;
74                 
75 }
76
77
78 int rd_kbfree(char* page, char **start, off_t off, int count, int *eof, 
79               void *data)
80 {
81         
82         struct obd_device* temp = (struct obd_device*)data;
83         struct ost_obd *ost = &temp->u.ost;
84         struct lustre_handle *conn = &ost->ost_conn;
85         struct obd_statfs mystats;
86         int len = 0;
87         __u32 blk_size;
88         __u64 result;
89
90         obd_statfs(conn, &mystats);
91         blk_size = mystats.os_bsize;
92         blk_size >>= 10;
93         result = mystats.os_bfree;
94         while(blk_size >>= 1){
95                 result <<= 1;
96         }
97         len += snprintf(page, count, LPU64"\n", result);
98         return len;  
99 }
100
101 int rd_filestotal(char* page, char **start, off_t off, int count, int *eof, 
102                   void *data)
103 {
104         struct obd_device* temp = (struct obd_device*)data;
105         struct ost_obd *ost = &temp->u.ost;
106         struct lustre_handle *conn = &ost->ost_conn;
107         struct obd_statfs mystats;
108         int len = 0;
109         
110         obd_statfs(conn, &mystats);
111         len += snprintf(page, count, LPU64"\n",mystats.os_files); 
112         return len;
113         
114 }
115
116 int rd_filesfree(char* page, char **start, off_t off, int count, int *eof, 
117                  void *data)
118 {
119         
120         struct obd_device* temp = (struct obd_device*)data;
121         struct ost_obd *ost = &temp->u.ost;
122         struct lustre_handle *conn = &ost->ost_conn;
123         struct obd_statfs mystats;
124         int len = 0;
125         
126         obd_statfs(conn, &mystats);
127         len += snprintf(page, count, LPU64"\n", mystats.os_ffree); 
128         return len;
129         
130 }
131
132 int rd_filegroups(char* page, char **start, off_t off, int count, int *eof, 
133                   void *data)
134 {
135         return 0;
136 }
137
138 struct lprocfs_vars status_var_nm_1[] = {
139         {"status/uuid", rd_uuid, 0, 0},
140         {"status/blocksize",rd_blksize, 0, 0},
141         {"status/kbytesfree", rd_kbfree, 0, 0},
142         {"status/kbytestotal", rd_kbtotal, 0, 0},
143         {"status/filestotal", rd_filestotal, 0, 0},
144         {"status/filesfree", rd_filesfree, 0, 0},
145         {"status/filegroups", rd_filegroups, 0, 0},
146         {0}
147 };
148
149 int rd_numrefs(char* page, char **start, off_t off, int count, int *eof, 
150                void *data)
151 {
152         struct obd_type* class = (struct obd_type*)data;
153         int len = 0;
154         len += snprintf(page, count, "%d\n", class->typ_refcnt);
155         return len;
156 }
157
158 struct lprocfs_vars status_class_var[] = {
159         {"status/num_refs", rd_numrefs, 0, 0},
160         {0}
161 };
162