Whamcloud - gitweb
Disable lprocfs until it can clean up.
[fs/lustre-release.git] / lustre / include / linux / lprocfs_status.h
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  *   Top level header file for LProc SNMP
22  */
23 #ifndef _LPROCFS_SNMP_H
24 #define _LPROCFS_SNMP_H
25
26 /*
27 #ifndef LPROC_SNMP
28 #define LPROC_SNMP
29 #endif
30 */
31
32 #include <linux/proc_fs.h>
33
34
35 typedef struct lprocfs_vars{
36         char* name;
37         read_proc_t* read_fptr;
38         write_proc_t* write_fptr;
39 } lprocfs_vars_t;
40
41 #ifdef LPROC_SNMP
42
43 struct proc_dir_entry* lprocfs_mkdir(const char* dname,
44                                      struct proc_dir_entry *parent);
45 struct proc_dir_entry* lprocfs_srch(struct proc_dir_entry* head,
46                                     const char* name);
47 void lprocfs_remove_all(struct proc_dir_entry* root);
48 struct proc_dir_entry* lprocfs_new_dir(struct proc_dir_entry* root,
49                                        const char* string, const char* tok);
50 int lprocfs_new_vars(struct proc_dir_entry* root, lprocfs_vars_t* list,
51                      const char* tok, void* data);
52 int lprocfs_add_vars(struct proc_dir_entry* root, lprocfs_vars_t* var,
53                      void* data);
54 int lprocfs_reg_obd(struct obd_device* device, lprocfs_vars_t* list,
55                     void* data);
56 int lprocfs_dereg_obd(struct obd_device* device);
57 struct proc_dir_entry* lprocfs_reg_mnt(char *mnt_name);
58 int lprocfs_dereg_mnt(struct proc_dir_entry* root);
59 int lprocfs_reg_class(struct obd_type* type, lprocfs_vars_t* list, void* data);
60 int lprocfs_dereg_class(struct obd_type* class);
61 int lprocfs_reg_main(void);
62 int lprocfs_dereg_main(void);
63 int lprocfs_ll_rd(char *page, char **start, off_t off, int count, int *eof,
64                   void *data);
65 #else
66
67
68 static inline int lprocfs_add_vars(struct proc_dir_entry* root,
69                                    lprocfs_vars_t* var, void* data)
70 {
71         return 0;
72 }
73
74 static inline int lprocfs_reg_obd(struct obd_device* device,
75                                   lprocfs_vars_t* list,
76                                   void* data)
77 {
78         return 0;
79 }
80
81 static inline int lprocfs_dereg_obd(struct obd_device* device)
82 {
83         return 0;
84 }
85
86 static inline struct proc_dir_entry* lprocfs_reg_mnt(char *name)
87 {
88         return 0;
89 }
90
91 static inline int lprocfs_dereg_mnt(struct proc_dir_entry* root)
92 {
93         return 0;
94 }
95
96 static inline int lprocfs_reg_class(struct obd_type* type,
97                                     lprocfs_vars_t* list, void* data)
98 {
99         return 0;
100 }
101
102 static inline int lprocfs_dereg_class(struct obd_type* class)
103 {
104         return 0;
105 }
106
107 static inline int lprocfs_reg_main(void)
108 {
109         return 0;
110 }
111
112 static inline int lprocfs_dereg_main(void)
113 {
114         return 0;
115 }
116
117 static inline int lprocfs_ll_rd(char *page, char **start, off_t off,
118                                 int count, int *eof, void *data)
119 {
120         return 0;
121 }
122 #endif /* LPROC_SNMP */
123
124 #endif /* LPROCFS_SNMP_H */