Whamcloud - gitweb
Merge b_md into HEAD
[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, 2003 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/lprocfs_status.h>
25 #include <linux/obd_class.h>
26
27 #ifndef LPROCFS
28 struct lprocfs_vars lprocfs_obd_vars[]  = { {0} };
29 struct lprocfs_vars lprocfs_module_vars[] = { {0} };
30 #else
31
32 int rd_fstype(char* page, char **start, off_t off, int count, int *eof,
33               void *data)
34 {
35         struct obd_device* dev = (struct obd_device*)data;
36         int rc = snprintf(page, count, "%s\n", dev->u.echo.eo_fstype);
37         *eof = 1;
38         return rc;
39 }
40
41 struct lprocfs_vars lprocfs_obd_vars[] = {
42         { "uuid",     lprocfs_rd_uuid,    0, 0 },
43         { "fstype",   rd_fstype,          0, 0 },
44         { 0 }
45 };
46
47 struct lprocfs_vars lprocfs_module_vars[] = {
48         { "num_refs", lprocfs_rd_numrefs, 0, 0 },
49         { 0 }
50 };
51
52 #endif /* LPROCFS */
53 LPROCFS_INIT_VARS(lprocfs_module_vars, lprocfs_obd_vars)