mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-12 12:22:42 +00:00
staging: lustre: libcfs: name parameters for function prototypes
Give the parameters names for the function prototypes in the libcfs headers. Signed-off-by: James Simmons <jsimmons@infradead.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4c6d33f975
commit
0b987e3e36
@ -61,7 +61,7 @@
|
||||
sigset_t cfs_block_allsigs(void);
|
||||
sigset_t cfs_block_sigs(unsigned long sigs);
|
||||
sigset_t cfs_block_sigsinv(unsigned long sigs);
|
||||
void cfs_restore_sigs(sigset_t);
|
||||
void cfs_restore_sigs(sigset_t sigset);
|
||||
void cfs_clear_sigpending(void);
|
||||
|
||||
/*
|
||||
@ -71,7 +71,7 @@ void cfs_clear_sigpending(void);
|
||||
/* returns a random 32-bit integer */
|
||||
unsigned int cfs_rand(void);
|
||||
/* seed the generator */
|
||||
void cfs_srand(unsigned int, unsigned int);
|
||||
void cfs_srand(unsigned int seed1, unsigned int seed2);
|
||||
void cfs_get_random_bytes(void *buf, int size);
|
||||
|
||||
#include "libcfs_debug.h"
|
||||
|
@ -708,25 +708,26 @@ typedef int (*cfs_hash_for_each_cb_t)(struct cfs_hash *hs,
|
||||
void *
|
||||
cfs_hash_lookup(struct cfs_hash *hs, const void *key);
|
||||
void
|
||||
cfs_hash_for_each(struct cfs_hash *hs, cfs_hash_for_each_cb_t, void *data);
|
||||
cfs_hash_for_each(struct cfs_hash *hs, cfs_hash_for_each_cb_t cb, void *data);
|
||||
void
|
||||
cfs_hash_for_each_safe(struct cfs_hash *hs, cfs_hash_for_each_cb_t, void *data);
|
||||
cfs_hash_for_each_safe(struct cfs_hash *hs, cfs_hash_for_each_cb_t cb,
|
||||
void *data);
|
||||
int
|
||||
cfs_hash_for_each_nolock(struct cfs_hash *hs, cfs_hash_for_each_cb_t,
|
||||
cfs_hash_for_each_nolock(struct cfs_hash *hs, cfs_hash_for_each_cb_t cb,
|
||||
void *data, int start);
|
||||
int
|
||||
cfs_hash_for_each_empty(struct cfs_hash *hs, cfs_hash_for_each_cb_t,
|
||||
cfs_hash_for_each_empty(struct cfs_hash *hs, cfs_hash_for_each_cb_t cb,
|
||||
void *data);
|
||||
void
|
||||
cfs_hash_for_each_key(struct cfs_hash *hs, const void *key,
|
||||
cfs_hash_for_each_cb_t, void *data);
|
||||
cfs_hash_for_each_cb_t cb, void *data);
|
||||
typedef int (*cfs_hash_cond_opt_cb_t)(void *obj, void *data);
|
||||
void
|
||||
cfs_hash_cond_del(struct cfs_hash *hs, cfs_hash_cond_opt_cb_t, void *data);
|
||||
cfs_hash_cond_del(struct cfs_hash *hs, cfs_hash_cond_opt_cb_t cb, void *data);
|
||||
|
||||
void
|
||||
cfs_hash_hlist_for_each(struct cfs_hash *hs, unsigned int hindex,
|
||||
cfs_hash_for_each_cb_t, void *data);
|
||||
cfs_hash_for_each_cb_t cb, void *data);
|
||||
int cfs_hash_is_empty(struct cfs_hash *hs);
|
||||
__u64 cfs_hash_size_get(struct cfs_hash *hs);
|
||||
|
||||
|
@ -75,7 +75,7 @@ do { \
|
||||
|
||||
#define KLASSERT(e) LASSERT(e)
|
||||
|
||||
void __noreturn lbug_with_loc(struct libcfs_debug_msg_data *);
|
||||
void __noreturn lbug_with_loc(struct libcfs_debug_msg_data *msg);
|
||||
|
||||
#define LBUG() \
|
||||
do { \
|
||||
@ -170,7 +170,7 @@ do { \
|
||||
#endif
|
||||
|
||||
void libcfs_run_upcall(char **argv);
|
||||
void libcfs_run_lbug_upcall(struct libcfs_debug_msg_data *);
|
||||
void libcfs_run_lbug_upcall(struct libcfs_debug_msg_data *msg);
|
||||
void libcfs_debug_dumplog(void);
|
||||
int libcfs_debug_init(unsigned long bufsize);
|
||||
int libcfs_debug_cleanup(void);
|
||||
|
@ -62,9 +62,9 @@
|
||||
|
||||
struct cfs_wi_sched;
|
||||
|
||||
void cfs_wi_sched_destroy(struct cfs_wi_sched *);
|
||||
void cfs_wi_sched_destroy(struct cfs_wi_sched *sched);
|
||||
int cfs_wi_sched_create(char *name, struct cfs_cpt_table *cptab, int cpt,
|
||||
int nthrs, struct cfs_wi_sched **);
|
||||
int nthrs, struct cfs_wi_sched **sched_pp);
|
||||
|
||||
struct cfs_workitem;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user