Whamcloud - gitweb
1. Bug fix for Bug #320, also needs repair of lconf, since it tries
[fs/lustre-release.git] / lustre / mdc / lproc_mdc.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
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         return 0;
43 }
44 int rd_kbtotal(char* page, char **start, off_t off, int count, int *eof, 
45                void *data)
46 {
47         return 0;
48 }
49
50 int rd_kbfree(char* page, char **start, off_t off, int count, int *eof, 
51               void *data)
52 {
53         return 0;
54 }
55
56
57 int rd_files(char* page, char **start, off_t off, int count, int *eof, 
58              void *data)
59 {
60         return 0;
61 }
62
63 int rd_filesfree(char* page, char **start, off_t off, int count, int *eof, 
64                  void *data)
65 {
66         return 0;
67 }
68
69 int rd_filegroups(char* page, char **start, off_t off, int count, int *eof, 
70                   void *data)
71 {
72         return 0;
73 }
74 int rd_conn_uuid(char* page, char **start, off_t off, int count, int *eof, 
75                  void *data)
76 {
77         struct obd_device* temp = (struct obd_device*)data;
78         struct client_obd* cli = &temp->u.cli;
79         struct obd_import* imp = &cli->cl_import;
80         int len = 0;
81         
82         len += snprintf(page, count, "%s\n",imp->imp_connection->c_remote_uuid);   
83         return len;
84 }
85
86 int rd_server_uuid(char* page, char **start, off_t off, int count, int *eof, 
87                    void *data)
88 {
89         struct obd_device* temp = (struct obd_device*)data;
90         struct client_obd* cli = &temp->u.cli;
91         int len = 0;
92         
93         len += snprintf(page, count, "%s\n",cli->cl_target_uuid);   
94         return len;
95 }
96
97 int rd_server_name(char* page, char **start, off_t off, int count, int *eof, 
98                    void *data)
99 {
100         return 0;
101         
102 }
103
104 struct lprocfs_vars status_var_nm_1[] = {
105         {"status/uuid", rd_uuid, 0, 0},
106         {"status/blocksize",rd_blksize, 0, 0},
107         {"status/kbytestotal",rd_kbtotal, 0, 0},
108         {"status/kbytesfree", rd_kbfree, 0, 0},
109         {"status/files", rd_files, 0, 0},
110         {"status/filesfree", rd_filesfree, 0, 0},
111         {"status/filegroups", rd_filegroups, 0, 0},
112         {"status/mds_server_uuid", rd_server_uuid, 0, 0},
113         {"status/mds_conn_uuid", rd_conn_uuid, 0, 0},
114         {0}
115 };
116 int rd_numrefs(char* page, char **start, off_t off, int count, int *eof, 
117                void *data)
118 {
119         struct obd_type* class = (struct obd_type*)data;
120         int len = 0;
121         len += snprintf(page, count, "%d\n", class->typ_refcnt);
122         return len;
123 }
124
125 struct lprocfs_vars status_class_var[] = {
126         {"status/num_refs", rd_numrefs, 0, 0},
127         {0}
128 };