Whamcloud - gitweb
8fc9fa63be9427f5deb6fdbf5b6a2571bdd21567
[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,
29                int count, int *eof, 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,
40                int count, int *eof, void *data)
41 {
42
43         return 0;
44
45 }
46 int rd_kbtotal(char* page, char **start, off_t off,
47                int count, int *eof, void *data)
48 {
49         return 0;
50 }
51
52 int rd_kbfree(char* page, char **start, off_t off,
53               int count, int *eof, void *data)
54 {
55         return 0;
56 }
57
58
59 int rd_files(char* page, char **start, off_t off,
60                   int count, int *eof, void *data)
61 {
62         return 0;
63 }
64
65 int rd_filesfree(char* page, char **start, off_t off,
66                int count, int *eof, void *data)
67 {
68         return 0;
69 }
70
71 int rd_filegroups(char* page, char **start, off_t off,
72                  int count, int *eof, void *data)
73 {
74         return 0;
75 }
76 int rd_conn_uuid(char* page, char **start, off_t off,
77                  int count, int *eof, void *data)
78 {
79         struct obd_device* temp=(struct obd_device*)data;
80         struct client_obd* cli=&temp->u.cli;
81         struct obd_import* imp=&cli->cl_import;
82         int len=0;
83         len+=snprintf(page, count, "%s\n",imp->imp_connection->c_remote_uuid);   
84         return len;
85 }
86
87 int rd_server_uuid(char* page, char **start, off_t off,
88                  int count, int *eof, void *data)
89 {
90         struct obd_device* temp=(struct obd_device*)data;
91         struct client_obd* cli=&temp->u.cli;
92         int len=0;
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,
98                  int count, int *eof, void *data)
99 {
100         return 0;
101         
102 }
103
104 struct lprocfs_vars status_var_nm_1[]={
105         {"status/uuid", rd_uuid, 0},
106         {"status/blocksize",rd_blksize, 0},
107         {"status/kbytestotal",rd_kbtotal, 0},
108         {"status/kbytesfree", rd_kbfree, 0},
109         {"status/files", rd_files, 0},
110         {"status/filesfree", rd_filesfree, 0},
111         {"status/filegroups", rd_filegroups, 0},
112         {"status/server_uuid", rd_server_uuid, 0},
113         {"status/conn_uuid", rd_conn_uuid, 0},
114         {0}
115 };
116 int rd_numdevices(char* page, char **start, off_t off,
117                   int count, int *eof, 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_devices", rd_numdevices, 0},
127         {0}
128 };