Whamcloud - gitweb
Lproc-snmp code drop
[fs/lustre-release.git] / lustre / obdecho / lproc_echo.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_ECHO
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         int len=0;
32         struct obd_device* dev=(struct obd_device*)data;
33         len+=snprintf(page, count, "%s\n", dev->obd_uuid);
34         return len;
35
36 }
37
38 int rd_fstype(char* page, char **start, off_t off,
39                int count, int *eof, void *data)
40 {
41         int len=0;
42         struct obd_device* dev=(struct obd_device*)data;
43         len+=snprintf(page, count, "%s\n", dev->u.echo.eo_fstype);
44         return len;
45
46 }
47
48
49 lprocfs_vars_t status_var_nm_1[]={
50         {"status/uuid", rd_uuid, 0},
51         {"status/fstype", rd_fstype, 0},
52         {0}
53 };
54
55 int rd_numdevices(char* page, char **start, off_t off,
56                   int count, int *eof, void *data)
57 {
58         struct obd_type* class=(struct obd_type*)data;
59         int len=0;
60         len+=snprintf(page, count, "%d\n", class->typ_refcnt);
61         return len;
62 }
63
64 lprocfs_vars_t status_class_var[]={
65         {"status/num_devices", rd_numdevices, 0},
66         {0}
67 };