Whamcloud - gitweb
* 1st attempt to prevent duplicate devices being started.
[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 #include <linux/obd_support.h>
24 #include <linux/obd_class.h>
25 #include <linux/lprocfs.h>
26 #include <linux/string.h>
27 #include <linux/lustre_lib.h>
28
29 int rd_uuid(char* page, char **start, off_t off,
30                int count, int *eof, void *data)
31 {
32
33        struct obd_device* temp=(struct obd_device*)data;
34        int len=0;
35        len+=snprintf(page, count, "%s\n",temp->obd_uuid);   
36        return len;
37
38
39 }
40 int rd_blksize(char* page, char **start, off_t off,
41                int count, int *eof, void *data)
42 {
43         return 0;
44
45 }
46 int rd_blktotal(char* page, char **start, off_t off,
47                 int count, int *eof, void *data)
48 {
49         return 0;
50 }
51
52 int rd_blkfree(char* page, char **start, off_t off,
53                int count, int *eof, void *data)
54 {
55         return 0;
56 }
57
58 int rd_kbfree(char* page, char **start, off_t off,
59               int count, int *eof, void *data)
60 {
61         return 0;
62 }
63
64 int rd_numobjects(char* page, char **start, off_t off,
65                   int count, int *eof, void *data)
66 {
67         return 0;
68 }
69
70 int rd_objfree(char* page, char **start, off_t off,
71                int count, int *eof, void *data)
72 {
73         return 0;
74 }
75
76 int rd_objgroups(char* page, char **start, off_t off,
77                  int count, int *eof, void *data)
78 {
79         return 0;
80 }
81 int rd_conn_uuid(char* page, char **start, off_t off,
82                  int count, int *eof, void *data)
83 {
84         struct obd_device* temp=(struct obd_device*)data;
85         struct client_obd* cli=&temp->u.cli;
86         struct obd_import* imp=&cli->cl_import;
87         int len=0;
88         len+=snprintf(page, count, "%s\n",imp->imp_connection->c_remote_uuid);   
89         return len;
90 }
91
92 int rd_server_uuid(char* page, char **start, off_t off,
93                  int count, int *eof, void *data)
94 {
95         struct obd_device* temp=(struct obd_device*)data;
96         struct client_obd* cli=&temp->u.cli;
97         int len=0;
98         len+=snprintf(page, count, "%s\n",cli->cl_target_uuid);   
99         return len;
100 }
101
102 int rd_server_name(char* page, char **start, off_t off,
103                  int count, int *eof, void *data)
104 {
105         return 0;
106         
107 }
108
109 lprocfs_vars_t snmp_var_nm_1[]={
110         {"snmp/uuid", rd_uuid, 0},
111         {"snmp/f_blocksize",rd_blksize, 0},
112         {"snmp/f_blockstotal",rd_blktotal, 0},
113         {"snmp/f_blocksfree",rd_blkfree, 0},
114         {"snmp/f_kbytesfree", rd_kbfree, 0},
115         {"snmp/f_objects", rd_numobjects, 0},
116         {"snmp/f_objectsfree", rd_objfree, 0},
117         {"snmp/f_objectgroups", rd_objgroups, 0},
118         {"snmp/server_uuid", rd_server_uuid, 0},
119         {"snmp/conn_uuid", rd_conn_uuid, 0},
120         {0}
121 };