Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / lov / lproc_lov.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 the Lustre file system, http://www.lustre.org
7  *   Lustre is a trademark of Cluster File Systems, Inc.
8  *
9  *   You may have signed or agreed to another license before downloading
10  *   this software.  If so, you are bound by the terms and conditions
11  *   of that agreement, and the following does not apply to you.  See the
12  *   LICENSE file included with this distribution for more information.
13  *
14  *   If you did not agree to a different license, then this copy of Lustre
15  *   is open source software; you can redistribute it and/or modify it
16  *   under the terms of version 2 of the GNU General Public License as
17  *   published by the Free Software Foundation.
18  *
19  *   In either case, Lustre is distributed in the hope that it will be
20  *   useful, but WITHOUT ANY WARRANTY; without even the implied warranty
21  *   of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  *   license text for more details.
23  *
24  */
25 #define DEBUG_SUBSYSTEM S_CLASS
26
27 #include <linux/version.h>
28 #if (LINUX_VERSION_CODE >= KERNEL_VERSION(2,5,0))
29 #include <asm/statfs.h>
30 #endif
31 #include <lprocfs_status.h>
32 #include <obd_class.h>
33 #include <linux/seq_file.h>
34 #include "lov_internal.h"
35
36 #ifdef LPROCFS
37 static int lov_rd_stripesize(char *page, char **start, off_t off, int count,
38                              int *eof, void *data)
39 {
40         struct obd_device *dev = (struct obd_device *)data;
41         struct lov_desc *desc;
42
43         LASSERT(dev != NULL);
44         desc = &dev->u.lov.desc;
45         *eof = 1;
46         return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_size);
47 }
48
49 static int lov_wr_stripesize(struct file *file, const char *buffer,
50                                unsigned long count, void *data)
51 {
52         struct obd_device *dev = (struct obd_device *)data;
53         struct lov_desc *desc;
54         __u64 val;
55         int rc;
56         
57         LASSERT(dev != NULL);
58         desc = &dev->u.lov.desc;
59         rc = lprocfs_write_u64_helper(buffer, count, &val);
60         if (rc)
61                 return rc;
62
63         desc->ld_default_stripe_size = val;
64         lov_fix_desc(desc);
65         return count;
66 }
67
68 static int lov_rd_stripeoffset(char *page, char **start, off_t off, int count,
69                                int *eof, void *data)
70 {
71         struct obd_device *dev = (struct obd_device *)data;
72         struct lov_desc *desc;
73
74         LASSERT(dev != NULL);
75         desc = &dev->u.lov.desc;
76         *eof = 1;
77         return snprintf(page, count, LPU64"\n", desc->ld_default_stripe_offset);
78 }
79
80 static int lov_wr_stripeoffset(struct file *file, const char *buffer,
81                                unsigned long count, void *data)
82 {
83         struct obd_device *dev = (struct obd_device *)data;
84         struct lov_desc *desc;
85         __u64 val;
86         int rc;
87         
88         LASSERT(dev != NULL);
89         desc = &dev->u.lov.desc;
90         rc = lprocfs_write_u64_helper(buffer, count, &val);
91         if (rc)
92                 return rc;
93
94         desc->ld_default_stripe_offset = val;
95         lov_fix_desc(desc);
96         return count;
97 }
98
99 static int lov_rd_stripetype(char *page, char **start, off_t off, int count,
100                              int *eof, void *data)
101 {
102         struct obd_device* dev = (struct obd_device*)data;
103         struct lov_desc *desc;
104
105         LASSERT(dev != NULL);
106         desc = &dev->u.lov.desc;
107         *eof = 1;
108         return snprintf(page, count, "%u\n", desc->ld_pattern);
109 }
110
111 static int lov_wr_stripetype(struct file *file, const char *buffer,
112                              unsigned long count, void *data)
113 {
114         struct obd_device *dev = (struct obd_device *)data;
115         struct lov_desc *desc;
116         int val, rc;
117         
118         LASSERT(dev != NULL);
119         desc = &dev->u.lov.desc;
120         rc = lprocfs_write_helper(buffer, count, &val);
121         if (rc)
122                 return rc;
123
124         desc->ld_pattern = val;
125         lov_fix_desc(desc);
126         return count;
127 }
128
129 static int lov_rd_stripecount(char *page, char **start, off_t off, int count,
130                               int *eof, void *data)
131 {
132         struct obd_device *dev = (struct obd_device *)data;
133         struct lov_desc *desc;
134
135         LASSERT(dev != NULL);
136         desc = &dev->u.lov.desc;
137         *eof = 1;
138         return snprintf(page, count, "%u\n", desc->ld_default_stripe_count);
139 }
140
141 static int lov_wr_stripecount(struct file *file, const char *buffer,
142                               unsigned long count, void *data)
143 {
144         struct obd_device *dev = (struct obd_device *)data;
145         struct lov_desc *desc;
146         int val, rc;
147         
148         LASSERT(dev != NULL);
149         desc = &dev->u.lov.desc;
150         rc = lprocfs_write_helper(buffer, count, &val);
151         if (rc)
152                 return rc;
153
154         desc->ld_default_stripe_count = val;
155         lov_fix_desc(desc);
156         return count;
157 }
158
159 static int lov_rd_numobd(char *page, char **start, off_t off, int count,
160                          int *eof, void *data)
161 {
162         struct obd_device *dev = (struct obd_device*)data;
163         struct lov_desc *desc;
164
165         LASSERT(dev != NULL);
166         desc = &dev->u.lov.desc;
167         *eof = 1;
168         return snprintf(page, count, "%u\n", desc->ld_tgt_count);
169
170 }
171
172 static int lov_rd_activeobd(char *page, char **start, off_t off, int count,
173                             int *eof, void *data)
174 {
175         struct obd_device* dev = (struct obd_device*)data;
176         struct lov_desc *desc;
177
178         LASSERT(dev != NULL);
179         desc = &dev->u.lov.desc;
180         *eof = 1;
181         return snprintf(page, count, "%u\n", desc->ld_active_tgt_count);
182 }
183
184 static int lov_rd_desc_uuid(char *page, char **start, off_t off, int count,
185                             int *eof, void *data)
186 {
187         struct obd_device *dev = (struct obd_device*) data;
188         struct lov_obd *lov;
189
190         LASSERT(dev != NULL);
191         lov = &dev->u.lov;
192         *eof = 1;
193         return snprintf(page, count, "%s\n", lov->desc.ld_uuid.uuid);
194 }
195
196 /* free priority (0-255): how badly user wants to choose empty osts */ 
197 static int lov_rd_qos_priofree(char *page, char **start, off_t off, int count,
198                                int *eof, void *data)
199 {
200         struct obd_device *dev = (struct obd_device*) data;
201         struct lov_obd *lov;
202
203         LASSERT(dev != NULL);
204         lov = &dev->u.lov;
205         *eof = 1;
206         return snprintf(page, count, "%d%%\n", 
207                         (lov->lov_qos.lq_prio_free * 100) >> 8);
208 }
209
210 static int lov_wr_qos_priofree(struct file *file, const char *buffer,
211                                unsigned long count, void *data)
212 {
213         struct obd_device *dev = (struct obd_device *)data;
214         struct lov_obd *lov;
215         int val, rc;
216         LASSERT(dev != NULL);
217
218         lov = &dev->u.lov;
219         rc = lprocfs_write_helper(buffer, count, &val);
220         if (rc)
221                 return rc;
222
223         if (val > 100)
224                 return -EINVAL;
225         lov->lov_qos.lq_prio_free = (val << 8) / 100;
226         lov->lov_qos.lq_dirty = 1;
227         lov->lov_qos.lq_reset = 1;
228         return count;
229 }
230
231 static int lov_rd_qos_maxage(char *page, char **start, off_t off, int count,
232                              int *eof, void *data)
233 {
234         struct obd_device *dev = (struct obd_device*) data;
235         struct lov_obd *lov;
236
237         LASSERT(dev != NULL);
238         lov = &dev->u.lov;
239         *eof = 1;
240         return snprintf(page, count, "%u Sec\n", lov->desc.ld_qos_maxage);
241 }
242
243 static int lov_wr_qos_maxage(struct file *file, const char *buffer,
244                              unsigned long count, void *data)
245 {
246         struct obd_device *dev = (struct obd_device *)data;
247         struct lov_obd *lov;
248         int val, rc;
249         LASSERT(dev != NULL);
250
251         lov = &dev->u.lov;
252         rc = lprocfs_write_helper(buffer, count, &val);
253         if (rc)
254                 return rc;
255
256         if (val <= 0)
257                 return -EINVAL;
258         lov->desc.ld_qos_maxage = val;
259         return count;
260 }
261
262 static void *lov_tgt_seq_start(struct seq_file *p, loff_t *pos)
263 {
264         struct obd_device *dev = p->private;
265         struct lov_obd *lov = &dev->u.lov;
266
267         return (*pos >= lov->desc.ld_tgt_count) ? NULL : lov->lov_tgts[*pos];
268
269 }
270
271 static void lov_tgt_seq_stop(struct seq_file *p, void *v)
272 {
273 }
274
275 static void *lov_tgt_seq_next(struct seq_file *p, void *v, loff_t *pos)
276 {
277         struct obd_device *dev = p->private;
278         struct lov_obd *lov = &dev->u.lov;
279
280         while (++*pos < lov->desc.ld_tgt_count) {
281                 if (lov->lov_tgts[*pos])
282                         return lov->lov_tgts[*pos];
283         }
284         return NULL;
285 }
286
287 static int lov_tgt_seq_show(struct seq_file *p, void *v)
288 {
289         struct lov_tgt_desc *tgt = v;
290         return seq_printf(p, "%d: %s %sACTIVE\n", tgt->ltd_index, 
291                           obd_uuid2str(&tgt->ltd_uuid), 
292                           tgt->ltd_active ? "" : "IN");
293 }
294
295 struct seq_operations lov_tgt_sops = {
296         .start = lov_tgt_seq_start,
297         .stop = lov_tgt_seq_stop,
298         .next = lov_tgt_seq_next,
299         .show = lov_tgt_seq_show,
300 };
301
302 static int lov_target_seq_open(struct inode *inode, struct file *file)
303 {
304         struct proc_dir_entry *dp = PDE(inode);
305         struct seq_file *seq;
306         int rc;
307         
308         LPROCFS_ENTRY_AND_CHECK(dp);
309         rc = seq_open(file, &lov_tgt_sops);
310         if (rc) {
311                 LPROCFS_EXIT();
312                 return rc;
313         }
314
315         seq = file->private_data;
316         seq->private = dp->data;
317         return 0;
318 }
319
320 struct lprocfs_vars lprocfs_obd_vars[] = {
321         { "uuid",         lprocfs_rd_uuid,        0, 0 },
322         { "stripesize",   lov_rd_stripesize,      lov_wr_stripesize, 0 },
323         { "stripeoffset", lov_rd_stripeoffset,    lov_wr_stripeoffset, 0 },
324         { "stripecount",  lov_rd_stripecount,     lov_wr_stripecount, 0 },
325         { "stripetype",   lov_rd_stripetype,      lov_wr_stripetype, 0 },
326         { "numobd",       lov_rd_numobd,          0, 0 },
327         { "activeobd",    lov_rd_activeobd,       0, 0 },
328         { "filestotal",   lprocfs_rd_filestotal,  0, 0 },
329         { "filesfree",    lprocfs_rd_filesfree,   0, 0 },
330         /*{ "filegroups", lprocfs_rd_filegroups,  0, 0 },*/
331         { "blocksize",    lprocfs_rd_blksize,     0, 0 },
332         { "kbytestotal",  lprocfs_rd_kbytestotal, 0, 0 },
333         { "kbytesfree",   lprocfs_rd_kbytesfree,  0, 0 },
334         { "kbytesavail",  lprocfs_rd_kbytesavail, 0, 0 },
335         { "desc_uuid",    lov_rd_desc_uuid,       0, 0 },
336         { "qos_prio_free",lov_rd_qos_priofree,    lov_wr_qos_priofree, 0 },
337         { "qos_maxage",   lov_rd_qos_maxage,      lov_wr_qos_maxage, 0 },
338         { 0 }
339 };
340
341 static struct lprocfs_vars lprocfs_module_vars[] = {
342         { "num_refs",     lprocfs_rd_numrefs,     0, 0 },
343         { 0 }
344 };
345
346 struct file_operations lov_proc_target_fops = {
347         .owner   = THIS_MODULE,
348         .open    = lov_target_seq_open,
349         .read    = seq_read,
350         .llseek  = seq_lseek,
351         .release = lprocfs_seq_release,
352 };
353
354 LPROCFS_INIT_VARS(lov, lprocfs_module_vars, lprocfs_obd_vars)
355 #endif /* LPROCFS */