Whamcloud - gitweb
58e9097d2a7f397a7e2634865e0ed6a5153cc6a2
[fs/lustre-release.git] / lustre / osc / lproc_osc.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 int rd_uuid(char* page, char **start, off_t off, int count, int *eof, 
28             void *data)
29 {
30         int len = 0;
31         struct obd_device* dev = (struct obd_device*)data;
32         len += snprintf(page, count, "%s\n", dev->obd_uuid);
33         return len;
34
35 }
36 int rd_blksize(char* page, char **start, off_t off, int count, int *eof, 
37                void *data)
38 {
39         return 0;
40 }
41 int rd_kbytestotal(char* page, char **start, off_t off, int count, int *eof, 
42                    void *data)
43 {
44         return 0;
45 }
46
47 int rd_kbytesfree(char* page, char **start, off_t off, int count, int *eof, 
48                   void *data)
49 {
50         return 0;
51 }
52
53 int rd_filestotal(char* page, char **start, off_t off, int count, int *eof, 
54                   void *data)
55 {
56         return 0;
57 }
58
59 int rd_filesfree(char* page, char **start, off_t off, int count, int *eof, 
60                  void *data)
61 {
62         return 0;
63 }
64
65 int rd_filegroups(char* page, char **start, off_t off, int count, int *eof, 
66                   void *data)
67 {
68         return 0;
69 }
70 int rd_server_uuid(char* page, char **start, off_t off, int count, int *eof, 
71                    void *data)
72 {
73         
74         struct obd_device* temp = (struct obd_device*)data;
75         struct client_obd* cli = &temp->u.cli;
76         int len = 0;
77         len += snprintf(page, count, "%s\n",cli->cl_target_uuid);   
78         return len;
79
80         
81 }
82 int rd_conn_uuid(char* page, char **start, off_t off, int count, int *eof, 
83                  void *data)
84 {
85         struct obd_device* temp=(struct obd_device*)data;
86         struct client_obd* cli=&temp->u.cli;
87         struct obd_import* imp=&cli->cl_import;
88         int len = 0;
89         len += snprintf(page, count, "%s\n", 
90                         imp->imp_connection->c_remote_uuid);   
91         return len;  
92         
93 }
94
95 struct lprocfs_vars status_var_nm_1[] = {
96         {"status/uuid", rd_uuid, 0, 0},
97         {"status/blocksize",rd_blksize, 0, 0},
98         {"status/kbytestotal", rd_kbytestotal, 0, 0},
99         {"status/kbytesfree", rd_kbytesfree, 0, 0},
100         {"status/filestotal", rd_filestotal, 0, 0},
101         {"status/filesfree", rd_filesfree, 0, 0},
102         {"status/filegroups", rd_filegroups, 0, 0},
103         {"status/ost_server_uuid", rd_server_uuid, 0, 0},
104         {"status/ost_conn_uuid", rd_conn_uuid, 0, 0},
105         {0}
106 };
107 int rd_numrefs(char* page, char **start, off_t off, int count, int *eof, 
108                void *data)
109 {
110         struct obd_type* class = (struct obd_type*)data;
111         int len = 0;
112         len += snprintf(page, count, "%d\n", class->typ_refcnt);
113         return len;
114 }
115
116 struct lprocfs_vars status_class_var[] = {
117         {"status/num_refs", rd_numrefs, 0, 0},
118         {0}
119 };