Whamcloud - gitweb
- make HEAD from b_post_cmd3
[fs/lustre-release.git] / lustre / mgs / lproc_mgs.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 <obd.h>
32 #include <obd_class.h>
33 #include <lprocfs_status.h>
34 #include "mgs_internal.h"
35
36 #ifdef LPROCFS
37
38 static int lprocfs_mgs_rd_mntdev(char *page, char **start, off_t off, int count,
39                                  int *eof, void *data)
40 {
41         struct obd_device* obd = (struct obd_device *)data;
42
43         LASSERT(obd != NULL);
44         LASSERT(obd->u.mgs.mgs_vfsmnt->mnt_devname);
45         *eof = 1;
46
47         return snprintf(page, count, "%s\n",obd->u.mgs.mgs_vfsmnt->mnt_devname);
48 }
49
50 static int mgs_fs_seq_show(struct seq_file *seq, void *v)
51 {
52         struct obd_device *obd = seq->private;
53         struct mgs_obd *mgs = &obd->u.mgs;
54         struct list_head dentry_list;
55         struct l_linux_dirent *dirent, *n;
56         int rc, len;
57         ENTRY;
58
59         LASSERT(obd != NULL);
60         rc = class_dentry_readdir(obd, mgs->mgs_configs_dir,
61                                   mgs->mgs_vfsmnt, &dentry_list);
62         if (rc) {
63                 CERROR("Can't read config dir\n");
64                 RETURN(rc);
65         }
66         list_for_each_entry_safe(dirent, n, &dentry_list, lld_list) {
67                 list_del(&dirent->lld_list);
68                 len = strlen(dirent->lld_name);
69                 if ((len > 7) && (strncmp(dirent->lld_name + len - 7, "-client",
70                                           len) == 0)) {
71                         seq_printf(seq, "%.*s\n", len - 7, dirent->lld_name);
72                 }
73                 OBD_FREE(dirent, sizeof(*dirent));
74         }
75
76         RETURN(0);
77 }
78
79 LPROC_SEQ_FOPS_RO(mgs_fs);
80
81 int lproc_mgs_setup(struct obd_device *obd)
82 {
83         struct mgs_obd *mgs = &obd->u.mgs;
84         int rc;
85
86         rc = lprocfs_obd_seq_create(obd, "filesystems", 0444,
87                                     &mgs_fs_fops, obd);
88         mgs->mgs_proc_live = proc_mkdir("live", obd->obd_proc_entry);
89
90         return rc;
91 }
92
93 static int mgs_live_seq_show(struct seq_file *seq, void *v) 
94 {
95         struct fs_db *fsdb = seq->private;
96         int i;
97         
98         down(&fsdb->fsdb_sem);
99
100         seq_printf(seq, "fsname: %s\n", fsdb->fsdb_name);
101         seq_printf(seq, "flags: %#x     gen: %d\n", 
102                    fsdb->fsdb_flags, fsdb->fsdb_gen);
103         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
104                  if (test_bit(i, fsdb->fsdb_mdt_index_map)) 
105                          seq_printf(seq, "%s-MDT%04x\n", fsdb->fsdb_name, i);
106         for (i = 0; i < INDEX_MAP_SIZE * 8; i++)
107                  if (test_bit(i, fsdb->fsdb_ost_index_map)) 
108                          seq_printf(seq, "%s-OST%04x\n", fsdb->fsdb_name, i);
109
110         up(&fsdb->fsdb_sem);
111         return 0;
112 }
113
114 LPROC_SEQ_FOPS_RO(mgs_live);
115
116 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
117 {
118         struct mgs_obd *mgs = &obd->u.mgs;
119         int rc;
120
121         if (!mgs->mgs_proc_live) 
122                 return 0;
123         rc = lprocfs_seq_create(mgs->mgs_proc_live, fsdb->fsdb_name, 0444, 
124                                 &mgs_live_fops, fsdb);
125
126         return 0;
127 }
128
129 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
130 {
131         struct mgs_obd *mgs = &obd->u.mgs;
132
133         if (!mgs->mgs_proc_live) 
134                 return 0;
135         remove_proc_entry(fsdb->fsdb_name, mgs->mgs_proc_live);
136         return 0;
137 }
138
139 struct lprocfs_vars lprocfs_mgs_obd_vars[] = {
140         { "uuid",            lprocfs_rd_uuid,        0, 0 },
141         { "fstype",          lprocfs_rd_fstype,      0, 0 },
142         { "mntdev",          lprocfs_mgs_rd_mntdev,  0, 0 },
143         { "num_exports",     lprocfs_rd_num_exports, 0, 0 },
144         { 0 }
145 };
146
147 struct lprocfs_vars lprocfs_mgs_module_vars[] = {
148         { 0 }
149 };
150
151 LPROCFS_INIT_VARS(mgs, lprocfs_mgs_module_vars, lprocfs_mgs_obd_vars);
152 #endif