Whamcloud - gitweb
Don't allow skipping OSTs if index has been specified.
[fs/lustre-release.git] / lustre / include / linux / lprocfs_status.h
index e769f43..1c50c8c 100644 (file)
  *   Top level header file for LProc SNMP
  *   Author: Hariharan Thantry thantry@users.sourceforge.net
  */
-#ifndef _LPROCFS_SNMP_H
-#define _LPROCFS_SNMP_H
-
+#ifndef _LINUX_LPROCFS_SNMP_H
+#define _LINUX_LPROCFS_SNMP_H
 
-#ifndef LPROC_SNMP
-#define LPROC_SNMP
+#ifndef _LPROCFS_SNMP_H
+#error Do not #include this file directly. #include <lprocfs_status.h> instead
 #endif
 
+#ifdef __KERNEL__
+#ifndef AUTOCONF_INCLUDED
+#include <linux/config.h>
+#endif
+#include <linux/autoconf.h>
 #include <linux/proc_fs.h>
-
-typedef enum {
-        E_LPROC_OK = 0
-} lproc_error_t;
-
-struct lprocfs_vars{
-
-        char* name;
-        read_proc_t* read_fptr;
-        write_proc_t* write_fptr;
-        void* data;
-};
-
-#ifdef LPROC_SNMP
-
-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_reg_mnt(char *mnt_name);
-int lprocfs_dereg_mnt(struct proc_dir_entry *root);
-
-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,
-                  void *data);
-#else
-
-
-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)
-{
-        return 0;
-}
-
-static inline int lprocfs_dereg_obd(struct obd_device* device)
-{
-        return 0;
-}
-
-static inline struct proc_dir_entry* lprocfs_reg_mnt(char *name)
-{
-        return NULL;
-}
-
-static inline int lprocfs_dereg_mnt(struct proc_dir_entry* root)
-{
-        return 0;
-}
-
-static inline int lprocfs_reg_class(struct obd_type* type,
-                                    struct lprocfs_vars* list, void* data)
-{
-        return 0;
-}
-
-static inline int lprocfs_dereg_class(struct obd_type* class)
-{
-        return 0;
-}
-
-static inline int lprocfs_reg_main(void)
-{
-        return 0;
-}
-
-static inline int lprocfs_dereg_main(void)
-{
-        return 0;
-}
-
-static inline int lprocfs_ll_rd(char *page, char **start, off_t off,
-                                int count, int *eof, void *data)
-{
-        return 0;
-}
-#endif /* LPROC_SNMP */
+#include <linux/seq_file.h>
+#include <linux/version.h>
+#include <linux/smp.h>
+#include <linux/rwsem.h>
+#include <libcfs/kp30.h>
+#include <linux/statfs.h>
+
+#else 
+#  define kstatfs statfs
+#endif
 
 #endif /* LPROCFS_SNMP_H */