Whamcloud - gitweb
Whitespace.
authoradilger <adilger>
Thu, 7 Nov 2002 09:07:41 +0000 (09:07 +0000)
committeradilger <adilger>
Thu, 7 Nov 2002 09:07:41 +0000 (09:07 +0000)
lustre/include/linux/lprocfs_status.h

index 4ce9a8c..0a8a2a9 100644 (file)
@@ -17,7 +17,7 @@
  *   You should have received a copy of the GNU General Public License
  *   along with Lustre; if not, write to the Free Software
  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *   
+ *
  *   Top level header file for LProc SNMP
  */
 #ifndef _LPROCFS_SNMP_H
 
 #include <linux/proc_fs.h>
 
-
 struct lprocfs_vars{
-        charname;
-        read_proc_tread_fptr;
-        write_proc_twrite_fptr;
+        char *name;
+        read_proc_t *read_fptr;
+        write_proc_t *write_fptr;
 };
 
 #ifdef LPROC_SNMP
 
-struct proc_dir_entry* lprocfs_mkdir(const chardname,
+struct proc_dir_entry* lprocfs_mkdir(const char *dname,
                                      struct proc_dir_entry *parent);
-struct proc_dir_entry* lprocfs_srch(struct proc_dir_entry* head,
-                                    const char* name);
-void lprocfs_remove_all(struct proc_dir_entry* root);
-struct proc_dir_entry* lprocfs_new_dir(struct proc_dir_entry* root,
-                                       const char* string, 
-                                       const char* tok);
-int lprocfs_new_vars(struct proc_dir_entry* root,
-                     struct lprocfs_vars* list, const char* tok, void* data);
-
-int lprocfs_add_vars(struct proc_dir_entry* root,
-                     struct lprocfs_vars* var, 
-                     void* data);
-int lprocfs_reg_obd(struct obd_device* device, 
-                    struct lprocfs_vars* list, 
-                    void* data);
-int lprocfs_dereg_obd(struct obd_device* device);
+struct proc_dir_entry* lprocfs_srch(struct proc_dir_entry *head,
+                                    const char *name);
+void lprocfs_remove_all(struct proc_dir_entry *root);
+struct proc_dir_entry* lprocfs_new_dir(struct proc_dir_entry *root,
+                                       const char *string,
+                                       const char *tok);
+int lprocfs_new_vars(struct proc_dir_entry *root, struct lprocfs_vars *list,
+                     const char *tok, void *data);
+
+int lprocfs_add_vars(struct proc_dir_entry *root, struct lprocfs_vars *var,
+                     void *data);
+int lprocfs_reg_obd(struct obd_device *device, struct lprocfs_vars *list,
+                    void *data);
+int lprocfs_dereg_obd(struct obd_device *device);
 struct proc_dir_entry* lprocfs_reg_mnt(char *mnt_name);
-int lprocfs_dereg_mnt(struct proc_dir_entryroot);
+int lprocfs_dereg_mnt(struct proc_dir_entry *root);
 
-int lprocfs_reg_class(struct obd_type* type, struct lprocfs_vars* list, 
-                      voiddata);
-int lprocfs_dereg_class(struct obd_typeclass);
+int lprocfs_reg_class(struct obd_type *type, struct lprocfs_vars *list,
+                      void *data);
+int lprocfs_dereg_class(struct obd_type *class);
 int lprocfs_reg_main(void);
 int lprocfs_dereg_main(void);
 int lprocfs_ll_rd(char *page, char **start, off_t off, int count, int *eof,
@@ -71,18 +68,14 @@ int lprocfs_ll_rd(char *page, char **start, off_t off, int count, int *eof,
 #else
 
 
-static inline int lprocfs_add_vars(struct proc_dir_entry* root,
-                                  struct lprocfs_vars* var, 
-                                  void* data)
-
+static inline int lprocfs_add_vars(struct proc_dir_entry *root,
+                                  struct lprocfs_vars *var, void *data)
 {
         return 0;
 }
 
-
-static inline int lprocfs_reg_obd(struct obd_device* device, 
-                                 struct lprocfs_vars* list, 
-                                 void* data)
+static inline int lprocfs_reg_obd(struct obd_device* device,
+                                 struct lprocfs_vars* list, void* data)
 {
         return 0;
 }
@@ -103,9 +96,7 @@ static inline int lprocfs_dereg_mnt(struct proc_dir_entry* root)
 }
 
 static inline int lprocfs_reg_class(struct obd_type* type,
-                                    struct lprocfs_vars* list, 
-                                    void* data)
-
+                                    struct lprocfs_vars* list, void* data)
 {
         return 0;
 }