Commit f267cdb4 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

staging: lustre: use CONFIG_PROC_FS

Don't rely on a "custom" LPROCFS define, it's not needed, just check for
the real thing.  This will let us delete a whole .h file that is not
being used for anything other than one #define.

Cc: Andreas Dilger <andreas.dilger@intel.com>
Cc: Oleg Drokin <oleg.drokin@intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 06bf61b2
...@@ -47,9 +47,9 @@ ...@@ -47,9 +47,9 @@
int seq_client_alloc_super(struct lu_client_seq *seq, int seq_client_alloc_super(struct lu_client_seq *seq,
const struct lu_env *env); const struct lu_env *env);
# ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern struct lprocfs_vars seq_client_proc_list[]; extern struct lprocfs_vars seq_client_proc_list[];
# endif #endif
extern struct proc_dir_entry *seq_type_proc_dir; extern struct proc_dir_entry *seq_type_proc_dir;
......
...@@ -400,18 +400,18 @@ EXPORT_SYMBOL(seq_client_flush); ...@@ -400,18 +400,18 @@ EXPORT_SYMBOL(seq_client_flush);
static void seq_client_proc_fini(struct lu_client_seq *seq) static void seq_client_proc_fini(struct lu_client_seq *seq)
{ {
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
if (seq->lcs_proc_dir) { if (seq->lcs_proc_dir) {
if (!IS_ERR(seq->lcs_proc_dir)) if (!IS_ERR(seq->lcs_proc_dir))
lprocfs_remove(&seq->lcs_proc_dir); lprocfs_remove(&seq->lcs_proc_dir);
seq->lcs_proc_dir = NULL; seq->lcs_proc_dir = NULL;
} }
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
} }
static int seq_client_proc_init(struct lu_client_seq *seq) static int seq_client_proc_init(struct lu_client_seq *seq)
{ {
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int rc; int rc;
seq->lcs_proc_dir = lprocfs_register(seq->lcs_name, seq->lcs_proc_dir = lprocfs_register(seq->lcs_name,
...@@ -439,7 +439,7 @@ static int seq_client_proc_init(struct lu_client_seq *seq) ...@@ -439,7 +439,7 @@ static int seq_client_proc_init(struct lu_client_seq *seq)
seq_client_proc_fini(seq); seq_client_proc_fini(seq);
return rc; return rc;
#else /* LPROCFS */ #else /* CONFIG_PROC_FS */
return 0; return 0;
#endif #endif
} }
......
...@@ -142,7 +142,7 @@ extern struct lu_fld_hash fld_hash[]; ...@@ -142,7 +142,7 @@ extern struct lu_fld_hash fld_hash[];
int fld_client_rpc(struct obd_export *exp, int fld_client_rpc(struct obd_export *exp,
struct lu_seq_range *range, __u32 fld_op); struct lu_seq_range *range, __u32 fld_op);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern struct lprocfs_vars fld_client_proc_list[]; extern struct lprocfs_vars fld_client_proc_list[];
#endif #endif
......
...@@ -273,7 +273,7 @@ EXPORT_SYMBOL(fld_client_del_target); ...@@ -273,7 +273,7 @@ EXPORT_SYMBOL(fld_client_del_target);
struct proc_dir_entry *fld_type_proc_dir = NULL; struct proc_dir_entry *fld_type_proc_dir = NULL;
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
static int fld_client_proc_init(struct lu_client_fld *fld) static int fld_client_proc_init(struct lu_client_fld *fld)
{ {
int rc; int rc;
......
...@@ -1481,7 +1481,7 @@ static inline struct dt_thread_info *dt_info(const struct lu_env *env) ...@@ -1481,7 +1481,7 @@ static inline struct dt_thread_info *dt_info(const struct lu_env *env)
int dt_global_init(void); int dt_global_init(void);
void dt_global_fini(void); void dt_global_fini(void);
# ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int lprocfs_dt_rd_blksize(char *page, char **start, off_t off, int lprocfs_dt_rd_blksize(char *page, char **start, off_t off,
int count, int *eof, void *data); int count, int *eof, void *data);
int lprocfs_dt_rd_kbytestotal(char *page, char **start, off_t off, int lprocfs_dt_rd_kbytestotal(char *page, char **start, off_t off,
...@@ -1494,6 +1494,6 @@ int lprocfs_dt_rd_filestotal(char *page, char **start, off_t off, ...@@ -1494,6 +1494,6 @@ int lprocfs_dt_rd_filestotal(char *page, char **start, off_t off,
int count, int *eof, void *data); int count, int *eof, void *data);
int lprocfs_dt_rd_filesfree(char *page, char **start, off_t off, int lprocfs_dt_rd_filesfree(char *page, char **start, off_t off,
int count, int *eof, void *data); int count, int *eof, void *data);
# endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
#endif /* __LUSTRE_DT_OBJECT_H */ #endif /* __LUSTRE_DT_OBJECT_H */
...@@ -44,7 +44,6 @@ ...@@ -44,7 +44,6 @@
#include "linux/lprocfs_status.h" #include "linux/lprocfs_status.h"
#include "lustre/lustre_idl.h" #include "lustre/lustre_idl.h"
#include "../../include/linux/libcfs/params_tree.h"
struct lprocfs_vars { struct lprocfs_vars {
const char *name; const char *name;
...@@ -375,7 +374,7 @@ extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count, ...@@ -375,7 +374,7 @@ extern int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
int *val, int mult); int *val, int mult);
extern int lprocfs_read_frac_helper(char *buffer, unsigned long count, extern int lprocfs_read_frac_helper(char *buffer, unsigned long count,
long val, int mult); long val, int mult);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern int lprocfs_stats_alloc_one(struct lprocfs_stats *stats, extern int lprocfs_stats_alloc_one(struct lprocfs_stats *stats,
unsigned int cpuid); unsigned int cpuid);
...@@ -806,7 +805,7 @@ extern int lprocfs_quota_wr_qs_factor(struct file *file, ...@@ -806,7 +805,7 @@ extern int lprocfs_quota_wr_qs_factor(struct file *file,
const char *buffer, const char *buffer,
unsigned long count, void *data); unsigned long count, void *data);
#else #else
/* LPROCFS is not defined */ /* CONFIG_PROC_FS is not defined */
#define proc_lustre_root NULL #define proc_lustre_root NULL
...@@ -1000,6 +999,6 @@ __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx, ...@@ -1000,6 +999,6 @@ __u64 lprocfs_stats_collector(struct lprocfs_stats *stats, int idx,
/* lproc_ptlrpc.c */ /* lproc_ptlrpc.c */
#define target_print_req NULL #define target_print_req NULL
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
#endif /* LPROCFS_SNMP_H */ #endif /* LPROCFS_SNMP_H */
...@@ -1285,7 +1285,7 @@ void ldlm_namespace_register(struct ldlm_namespace *ns, ldlm_side_t client); ...@@ -1285,7 +1285,7 @@ void ldlm_namespace_register(struct ldlm_namespace *ns, ldlm_side_t client);
void ldlm_namespace_unregister(struct ldlm_namespace *ns, ldlm_side_t client); void ldlm_namespace_unregister(struct ldlm_namespace *ns, ldlm_side_t client);
void ldlm_namespace_get(struct ldlm_namespace *ns); void ldlm_namespace_get(struct ldlm_namespace *ns);
void ldlm_namespace_put(struct ldlm_namespace *ns); void ldlm_namespace_put(struct ldlm_namespace *ns);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int ldlm_proc_setup(void); int ldlm_proc_setup(void);
void ldlm_proc_cleanup(void); void ldlm_proc_cleanup(void);
#else #else
......
...@@ -3229,7 +3229,7 @@ void ptlrpcd_decref(void); ...@@ -3229,7 +3229,7 @@ void ptlrpcd_decref(void);
* @{ * @{
*/ */
const char* ll_opcode2str(__u32 opcode); const char* ll_opcode2str(__u32 opcode);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void ptlrpc_lprocfs_register_obd(struct obd_device *obd); void ptlrpc_lprocfs_register_obd(struct obd_device *obd);
void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd); void ptlrpc_lprocfs_unregister_obd(struct obd_device *obd);
void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes); void ptlrpc_lprocfs_brw(struct ptlrpc_request *req, int bytes);
......
...@@ -1064,7 +1064,7 @@ const char * sec2target_str(struct ptlrpc_sec *sec); ...@@ -1064,7 +1064,7 @@ const char * sec2target_str(struct ptlrpc_sec *sec);
/* /*
* lprocfs * lprocfs
*/ */
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
struct proc_dir_entry; struct proc_dir_entry;
extern struct proc_dir_entry *sptlrpc_proc_root; extern struct proc_dir_entry *sptlrpc_proc_root;
int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev); int sptlrpc_lprocfs_cliobd_attach(struct obd_device *dev);
......
...@@ -141,7 +141,7 @@ int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg); ...@@ -141,7 +141,7 @@ int class_add_conn(struct obd_device *obd, struct lustre_cfg *lcfg);
int class_add_uuid(const char *uuid, __u64 nid); int class_add_uuid(const char *uuid, __u64 nid);
/*obdecho*/ /*obdecho*/
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars); extern void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars);
#else #else
static inline void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars) static inline void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars)
...@@ -347,7 +347,7 @@ do { \ ...@@ -347,7 +347,7 @@ do { \
} while (0) } while (0)
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
#define OBD_COUNTER_OFFSET(op) \ #define OBD_COUNTER_OFFSET(op) \
((offsetof(struct obd_ops, o_ ## op) - \ ((offsetof(struct obd_ops, o_ ## op) - \
offsetof(struct obd_ops, o_iocontrol)) \ offsetof(struct obd_ops, o_iocontrol)) \
......
...@@ -508,7 +508,7 @@ extern atomic_t libcfs_kmemory; ...@@ -508,7 +508,7 @@ extern atomic_t libcfs_kmemory;
extern void obd_update_maxusage(void); extern void obd_update_maxusage(void);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
#define obd_memory_add(size) \ #define obd_memory_add(size) \
lprocfs_counter_add(obd_memory, OBD_MEMORY_STAT, (long)(size)) lprocfs_counter_add(obd_memory, OBD_MEMORY_STAT, (long)(size))
#define obd_memory_sub(size) \ #define obd_memory_sub(size) \
......
...@@ -636,7 +636,7 @@ int ldlm_pool_setup(struct ldlm_pool *pl, int limit) ...@@ -636,7 +636,7 @@ int ldlm_pool_setup(struct ldlm_pool *pl, int limit)
} }
EXPORT_SYMBOL(ldlm_pool_setup); EXPORT_SYMBOL(ldlm_pool_setup);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
static int lprocfs_pool_state_seq_show(struct seq_file *m, void *unused) static int lprocfs_pool_state_seq_show(struct seq_file *m, void *unused)
{ {
int granted, grant_rate, cancel_rate, grant_step; int granted, grant_rate, cancel_rate, grant_step;
...@@ -821,14 +821,14 @@ static void ldlm_pool_proc_fini(struct ldlm_pool *pl) ...@@ -821,14 +821,14 @@ static void ldlm_pool_proc_fini(struct ldlm_pool *pl)
pl->pl_proc_dir = NULL; pl->pl_proc_dir = NULL;
} }
} }
#else /* !LPROCFS */ #else /* !CONFIG_PROC_FS */
static int ldlm_pool_proc_init(struct ldlm_pool *pl) static int ldlm_pool_proc_init(struct ldlm_pool *pl)
{ {
return 0; return 0;
} }
static void ldlm_pool_proc_fini(struct ldlm_pool *pl) {} static void ldlm_pool_proc_fini(struct ldlm_pool *pl) {}
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns, int ldlm_pool_init(struct ldlm_pool *pl, struct ldlm_namespace *ns,
int idx, ldlm_side_t client) int idx, ldlm_side_t client)
......
...@@ -71,7 +71,7 @@ extern unsigned int ldlm_cancel_unused_locks_before_replay; ...@@ -71,7 +71,7 @@ extern unsigned int ldlm_cancel_unused_locks_before_replay;
* DDOS. */ * DDOS. */
unsigned int ldlm_dump_granted_max = 256; unsigned int ldlm_dump_granted_max = 256;
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
static ssize_t lprocfs_wr_dump_ns(struct file *file, const char *buffer, static ssize_t lprocfs_wr_dump_ns(struct file *file, const char *buffer,
size_t count, loff_t *off) size_t count, loff_t *off)
{ {
...@@ -382,12 +382,12 @@ int ldlm_namespace_proc_register(struct ldlm_namespace *ns) ...@@ -382,12 +382,12 @@ int ldlm_namespace_proc_register(struct ldlm_namespace *ns)
return 0; return 0;
} }
#undef MAX_STRING_SIZE #undef MAX_STRING_SIZE
#else /* LPROCFS */ #else /* CONFIG_PROC_FS */
#define ldlm_namespace_proc_unregister(ns) ({;}) #define ldlm_namespace_proc_unregister(ns) ({;})
#define ldlm_namespace_proc_register(ns) ({0;}) #define ldlm_namespace_proc_register(ns) ({0;})
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
static unsigned ldlm_res_hop_hash(struct cfs_hash *hs, static unsigned ldlm_res_hop_hash(struct cfs_hash *hs,
const void *key, unsigned mask) const void *key, unsigned mask)
......
...@@ -670,7 +670,7 @@ void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar); ...@@ -670,7 +670,7 @@ void ll_ra_read_ex(struct file *f, struct ll_ra_read *rar);
struct ll_ra_read *ll_ra_read_get(struct file *f); struct ll_ra_read *ll_ra_read_get(struct file *f);
/* llite/lproc_llite.c */ /* llite/lproc_llite.c */
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int lprocfs_register_mountpoint(struct proc_dir_entry *parent, int lprocfs_register_mountpoint(struct proc_dir_entry *parent,
struct super_block *sb, char *osc, char *mdc); struct super_block *sb, char *osc, char *mdc);
void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi); void lprocfs_unregister_mountpoint(struct ll_sb_info *sbi);
......
...@@ -146,7 +146,7 @@ struct lmv_tgt_desc ...@@ -146,7 +146,7 @@ struct lmv_tgt_desc
*lmv_locate_mds(struct lmv_obd *lmv, struct md_op_data *op_data, *lmv_locate_mds(struct lmv_obd *lmv, struct md_op_data *op_data,
struct lu_fid *fid); struct lu_fid *fid);
/* lproc_lmv.c */ /* lproc_lmv.c */
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void lprocfs_lmv_init_vars(struct lprocfs_static_vars *lvars); void lprocfs_lmv_init_vars(struct lprocfs_static_vars *lvars);
#else #else
static inline void lprocfs_lmv_init_vars(struct lprocfs_static_vars *lvars) static inline void lprocfs_lmv_init_vars(struct lprocfs_static_vars *lvars)
......
...@@ -1339,7 +1339,7 @@ static int lmv_setup(struct obd_device *obd, struct lustre_cfg *lcfg) ...@@ -1339,7 +1339,7 @@ static int lmv_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
lprocfs_lmv_init_vars(&lvars); lprocfs_lmv_init_vars(&lvars);
lprocfs_obd_setup(obd, lvars.obd_vars); lprocfs_obd_setup(obd, lvars.obd_vars);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
{ {
rc = lprocfs_seq_create(obd->obd_proc_entry, "target_obd", rc = lprocfs_seq_create(obd->obd_proc_entry, "target_obd",
0444, &lmv_proc_target_fops, obd); 0444, &lmv_proc_target_fops, obd);
......
...@@ -310,7 +310,7 @@ void dump_lsm(unsigned int level, const struct lov_stripe_md *lsm); ...@@ -310,7 +310,7 @@ void dump_lsm(unsigned int level, const struct lov_stripe_md *lsm);
int lovea_destroy_object(struct lov_obd *lov, struct lov_stripe_md *lsm, int lovea_destroy_object(struct lov_obd *lov, struct lov_stripe_md *lsm,
struct obdo *oa, void *data); struct obdo *oa, void *data);
/* lproc_lov.c */ /* lproc_lov.c */
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern const struct file_operations lov_proc_target_fops; extern const struct file_operations lov_proc_target_fops;
void lprocfs_lov_init_vars(struct lprocfs_static_vars *lvars); void lprocfs_lov_init_vars(struct lprocfs_static_vars *lvars);
#else #else
......
...@@ -820,7 +820,7 @@ int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg) ...@@ -820,7 +820,7 @@ int lov_setup(struct obd_device *obd, struct lustre_cfg *lcfg)
lprocfs_lov_init_vars(&lvars); lprocfs_lov_init_vars(&lvars);
lprocfs_obd_setup(obd, lvars.obd_vars); lprocfs_obd_setup(obd, lvars.obd_vars);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
{ {
int rc1; int rc1;
......
...@@ -152,7 +152,7 @@ cfs_hash_ops_t pool_hash_operations = { ...@@ -152,7 +152,7 @@ cfs_hash_ops_t pool_hash_operations = {
}; };
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
/* ifdef needed for liblustre support */ /* ifdef needed for liblustre support */
/* /*
* pool /proc seq_file methods * pool /proc seq_file methods
...@@ -294,7 +294,7 @@ static struct file_operations pool_proc_operations = { ...@@ -294,7 +294,7 @@ static struct file_operations pool_proc_operations = {
.llseek = seq_lseek, .llseek = seq_lseek,
.release = seq_release, .release = seq_release,
}; };
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
void lov_dump_pool(int level, struct pool_desc *pool) void lov_dump_pool(int level, struct pool_desc *pool)
{ {
...@@ -452,7 +452,7 @@ int lov_pool_new(struct obd_device *obd, char *poolname) ...@@ -452,7 +452,7 @@ int lov_pool_new(struct obd_device *obd, char *poolname)
INIT_HLIST_NODE(&new_pool->pool_hash); INIT_HLIST_NODE(&new_pool->pool_hash);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
/* we need this assert seq_file is not implemented for liblustre */ /* we need this assert seq_file is not implemented for liblustre */
/* get ref for /proc file */ /* get ref for /proc file */
lov_pool_getref(new_pool); lov_pool_getref(new_pool);
......
...@@ -244,7 +244,7 @@ struct file *l_dentry_open(struct lvfs_run_ctxt *ctxt, struct dentry *de, ...@@ -244,7 +244,7 @@ struct file *l_dentry_open(struct lvfs_run_ctxt *ctxt, struct dentry *de,
} }
EXPORT_SYMBOL(l_dentry_open); EXPORT_SYMBOL(l_dentry_open);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
__s64 lprocfs_read_helper(struct lprocfs_counter *lc, __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
struct lprocfs_counter_header *header, struct lprocfs_counter_header *header,
enum lprocfs_stats_flags flags, enum lprocfs_stats_flags flags,
...@@ -286,7 +286,7 @@ __s64 lprocfs_read_helper(struct lprocfs_counter *lc, ...@@ -286,7 +286,7 @@ __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
return ret; return ret;
} }
EXPORT_SYMBOL(lprocfs_read_helper); EXPORT_SYMBOL(lprocfs_read_helper);
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS*/
MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>"); MODULE_AUTHOR("Sun Microsystems, Inc. <http://www.lustre.org/>");
MODULE_DESCRIPTION("Lustre VFS Filesystem Helper v0.1"); MODULE_DESCRIPTION("Lustre VFS Filesystem Helper v0.1");
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include "../include/lustre_mdc.h" #include "../include/lustre_mdc.h"
#include "../include/lustre_mds.h" #include "../include/lustre_mds.h"
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars); void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars);
#else #else
static inline void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars) static inline void lprocfs_mdc_init_vars(struct lprocfs_static_vars *lvars)
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
#include "../include/lustre_log.h" #include "../include/lustre_log.h"
#include "../include/lustre_export.h" #include "../include/lustre_export.h"
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void lprocfs_mgc_init_vars(struct lprocfs_static_vars *lvars); void lprocfs_mgc_init_vars(struct lprocfs_static_vars *lvars);
int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data); int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data);
#else #else
...@@ -56,7 +56,7 @@ static inline int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data) ...@@ -56,7 +56,7 @@ static inline int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data)
{ {
return 0; return 0;
} }
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
int mgc_process_log(struct obd_device *mgc, struct config_llog_data *cld); int mgc_process_log(struct obd_device *mgc, struct config_llog_data *cld);
......
...@@ -445,7 +445,7 @@ static int config_log_end(char *logname, struct config_llog_instance *cfg) ...@@ -445,7 +445,7 @@ static int config_log_end(char *logname, struct config_llog_instance *cfg)
return rc; return rc;
} }
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data) int lprocfs_mgc_rd_ir_state(struct seq_file *m, void *data)
{ {
struct obd_device *obd = data; struct obd_device *obd = data;
......
...@@ -483,7 +483,7 @@ int obd_init_checks(void) ...@@ -483,7 +483,7 @@ int obd_init_checks(void)
} }
extern spinlock_t obd_types_lock; extern spinlock_t obd_types_lock;
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
extern int class_procfs_init(void); extern int class_procfs_init(void);
extern int class_procfs_clean(void); extern int class_procfs_clean(void);
#else #else
...@@ -594,7 +594,7 @@ void obd_update_maxusage(void) ...@@ -594,7 +594,7 @@ void obd_update_maxusage(void)
} }
EXPORT_SYMBOL(obd_update_maxusage); EXPORT_SYMBOL(obd_update_maxusage);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
__u64 obd_memory_max(void) __u64 obd_memory_max(void)
{ {
__u64 ret; __u64 ret;
......
...@@ -929,7 +929,7 @@ int dt_index_read(const struct lu_env *env, struct dt_device *dev, ...@@ -929,7 +929,7 @@ int dt_index_read(const struct lu_env *env, struct dt_device *dev,
} }
EXPORT_SYMBOL(dt_index_read); EXPORT_SYMBOL(dt_index_read);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int lprocfs_dt_rd_blksize(char *page, char **start, off_t off, int lprocfs_dt_rd_blksize(char *page, char **start, off_t off,
int count, int *eof, void *data) int count, int *eof, void *data)
...@@ -1046,4 +1046,4 @@ int lprocfs_dt_rd_filesfree(char *page, char **start, off_t off, ...@@ -1046,4 +1046,4 @@ int lprocfs_dt_rd_filesfree(char *page, char **start, off_t off,
} }
EXPORT_SYMBOL(lprocfs_dt_rd_filesfree); EXPORT_SYMBOL(lprocfs_dt_rd_filesfree);
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
...@@ -212,7 +212,7 @@ struct miscdevice obd_psdev = { ...@@ -212,7 +212,7 @@ struct miscdevice obd_psdev = {
}; };
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int obd_proc_version_seq_show(struct seq_file *m, void *v) int obd_proc_version_seq_show(struct seq_file *m, void *v)
{ {
return seq_printf(m, "lustre: %s\nkernel: %s\nbuild: %s\n", return seq_printf(m, "lustre: %s\nkernel: %s\nbuild: %s\n",
...@@ -435,4 +435,4 @@ int class_procfs_clean(void) ...@@ -435,4 +435,4 @@ int class_procfs_clean(void)
} }
return 0; return 0;
} }
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
...@@ -939,7 +939,7 @@ static int llog_run_tests(const struct lu_env *env, struct obd_device *obd) ...@@ -939,7 +939,7 @@ static int llog_run_tests(const struct lu_env *env, struct obd_device *obd)
return rc; return rc;
} }
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
static struct lprocfs_vars lprocfs_llog_test_obd_vars[] = { {0} }; static struct lprocfs_vars lprocfs_llog_test_obd_vars[] = { {0} };
static struct lprocfs_vars lprocfs_llog_test_module_vars[] = { {0} }; static struct lprocfs_vars lprocfs_llog_test_module_vars[] = { {0} };
static void lprocfs_llog_test_init_vars(struct lprocfs_static_vars *lvars) static void lprocfs_llog_test_init_vars(struct lprocfs_static_vars *lvars)
......
...@@ -220,7 +220,7 @@ int lprocfs_write_frac_helper(const char *buffer, unsigned long count, ...@@ -220,7 +220,7 @@ int lprocfs_write_frac_helper(const char *buffer, unsigned long count,
} }
EXPORT_SYMBOL(lprocfs_write_frac_helper); EXPORT_SYMBOL(lprocfs_write_frac_helper);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
static int lprocfs_no_percpu_stats = 0; static int lprocfs_no_percpu_stats = 0;
module_param(lprocfs_no_percpu_stats, int, 0644); module_param(lprocfs_no_percpu_stats, int, 0644);
......
...@@ -1994,7 +1994,7 @@ void lu_global_fini(void) ...@@ -1994,7 +1994,7 @@ void lu_global_fini(void)
static __u32 ls_stats_read(struct lprocfs_stats *stats, int idx) static __u32 ls_stats_read(struct lprocfs_stats *stats, int idx)
{ {
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
struct lprocfs_counter ret; struct lprocfs_counter ret;
lprocfs_stats_collect(stats, idx, &ret); lprocfs_stats_collect(stats, idx, &ret);
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include "../include/lprocfs_status.h" #include "../include/lprocfs_status.h"
#include "../include/obd_class.h" #include "../include/obd_class.h"
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
LPROC_SEQ_FOPS_RO_TYPE(echo, uuid); LPROC_SEQ_FOPS_RO_TYPE(echo, uuid);
static struct lprocfs_vars lprocfs_echo_obd_vars[] = { static struct lprocfs_vars lprocfs_echo_obd_vars[] = {
{ "uuid", &echo_uuid_fops, NULL, 0 }, { "uuid", &echo_uuid_fops, NULL, 0 },
...@@ -54,4 +54,4 @@ void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars) ...@@ -54,4 +54,4 @@ void lprocfs_echo_init_vars(struct lprocfs_static_vars *lvars)
lvars->module_vars = lprocfs_echo_module_vars; lvars->module_vars = lprocfs_echo_module_vars;
lvars->obd_vars = lprocfs_echo_obd_vars; lvars->obd_vars = lprocfs_echo_obd_vars;
} }
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
...@@ -136,7 +136,7 @@ extern spinlock_t osc_ast_guard; ...@@ -136,7 +136,7 @@ extern spinlock_t osc_ast_guard;
int osc_cleanup(struct obd_device *obd); int osc_cleanup(struct obd_device *obd);
int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg); int osc_setup(struct obd_device *obd, struct lustre_cfg *lcfg);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int lproc_osc_attach_seqstat(struct obd_device *dev); int lproc_osc_attach_seqstat(struct obd_device *dev);
void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars); void lprocfs_osc_init_vars(struct lprocfs_static_vars *lvars);
#else #else
......
...@@ -180,7 +180,7 @@ const char* ll_eopcode2str(__u32 opcode) ...@@ -180,7 +180,7 @@ const char* ll_eopcode2str(__u32 opcode)
LASSERT(ll_eopcode_table[opcode].opcode == opcode); LASSERT(ll_eopcode_table[opcode].opcode == opcode);
return ll_eopcode_table[opcode].opname; return ll_eopcode_table[opcode].opname;
} }
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void ptlrpc_lprocfs_register(struct proc_dir_entry *root, char *dir, void ptlrpc_lprocfs_register(struct proc_dir_entry *root, char *dir,
char *name, struct proc_dir_entry **procroot_ret, char *name, struct proc_dir_entry **procroot_ret,
struct lprocfs_stats **stats_ret) struct lprocfs_stats **stats_ret)
...@@ -1339,4 +1339,4 @@ int lprocfs_wr_pinger_recov(struct file *file, const char *buffer, ...@@ -1339,4 +1339,4 @@ int lprocfs_wr_pinger_recov(struct file *file, const char *buffer,
} }
EXPORT_SYMBOL(lprocfs_wr_pinger_recov); EXPORT_SYMBOL(lprocfs_wr_pinger_recov);
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
...@@ -76,7 +76,7 @@ void ptlrpc_initiate_recovery(struct obd_import *imp); ...@@ -76,7 +76,7 @@ void ptlrpc_initiate_recovery(struct obd_import *imp);
int lustre_unpack_req_ptlrpc_body(struct ptlrpc_request *req, int offset); int lustre_unpack_req_ptlrpc_body(struct ptlrpc_request *req, int offset);
int lustre_unpack_rep_ptlrpc_body(struct ptlrpc_request *req, int offset); int lustre_unpack_rep_ptlrpc_body(struct ptlrpc_request *req, int offset);
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
void ptlrpc_lprocfs_register_service(struct proc_dir_entry *proc_entry, void ptlrpc_lprocfs_register_service(struct proc_dir_entry *proc_entry,
struct ptlrpc_service *svc); struct ptlrpc_service *svc);
void ptlrpc_lprocfs_unregister_service(struct ptlrpc_service *svc); void ptlrpc_lprocfs_unregister_service(struct ptlrpc_service *svc);
...@@ -88,7 +88,7 @@ void ptlrpc_lprocfs_do_request_stat(struct ptlrpc_request *req, ...@@ -88,7 +88,7 @@ void ptlrpc_lprocfs_do_request_stat(struct ptlrpc_request *req,
#define ptlrpc_lprocfs_unregister_service(params...) do {} while (0) #define ptlrpc_lprocfs_unregister_service(params...) do {} while (0)
#define ptlrpc_lprocfs_rpc_sent(params...) do {} while (0) #define ptlrpc_lprocfs_rpc_sent(params...) do {} while (0)
#define ptlrpc_lprocfs_do_request_stat(params...) do {} while (0) #define ptlrpc_lprocfs_do_request_stat(params...) do {} while (0)
#endif /* LPROCFS */ #endif /* CONFIG_PROC_FS */
/* NRS */ /* NRS */
...@@ -263,7 +263,7 @@ void sptlrpc_enc_pool_fini(void); ...@@ -263,7 +263,7 @@ void sptlrpc_enc_pool_fini(void);
int sptlrpc_proc_enc_pool_seq_show(struct seq_file *m, void *v); int sptlrpc_proc_enc_pool_seq_show(struct seq_file *m, void *v);
/* sec_lproc.c */ /* sec_lproc.c */
#ifdef LPROCFS #if defined (CONFIG_PROC_FS)
int sptlrpc_lproc_init(void); int sptlrpc_lproc_init(void);
void sptlrpc_lproc_fini(void); void sptlrpc_lproc_fini(void);
#else #else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment