Commit a7e1894c authored by James Simmons's avatar James Simmons Committed by Greg Kroah-Hartman

staging: lustre: libcfs: remove use of __u* types

The __[u|s]* types are for UAPI headers or user
space. They shouldn't be used in core kernel code.
Signed-off-by: default avatarJames Simmons <jsimmons@infradead.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4dd7020d
...@@ -46,7 +46,7 @@ EXPORT_SYMBOL(cfs_race_waitq); ...@@ -46,7 +46,7 @@ EXPORT_SYMBOL(cfs_race_waitq);
int cfs_race_state; int cfs_race_state;
EXPORT_SYMBOL(cfs_race_state); EXPORT_SYMBOL(cfs_race_state);
int __cfs_fail_check_set(__u32 id, __u32 value, int set) int __cfs_fail_check_set(u32 id, u32 value, int set)
{ {
static atomic_t cfs_fail_count = ATOMIC_INIT(0); static atomic_t cfs_fail_count = ATOMIC_INIT(0);
...@@ -124,7 +124,7 @@ int __cfs_fail_check_set(__u32 id, __u32 value, int set) ...@@ -124,7 +124,7 @@ int __cfs_fail_check_set(__u32 id, __u32 value, int set)
} }
EXPORT_SYMBOL(__cfs_fail_check_set); EXPORT_SYMBOL(__cfs_fail_check_set);
int __cfs_fail_timeout_set(__u32 id, __u32 value, int ms, int set) int __cfs_fail_timeout_set(u32 id, u32 value, int ms, int set)
{ {
int ret; int ret;
......
...@@ -1035,10 +1035,10 @@ cfs_hash_create(char *name, unsigned int cur_bits, unsigned int max_bits, ...@@ -1035,10 +1035,10 @@ cfs_hash_create(char *name, unsigned int cur_bits, unsigned int max_bits,
cfs_hash_lock_setup(hs); cfs_hash_lock_setup(hs);
cfs_hash_hlist_setup(hs); cfs_hash_hlist_setup(hs);
hs->hs_cur_bits = (__u8)cur_bits; hs->hs_cur_bits = (u8)cur_bits;
hs->hs_min_bits = (__u8)cur_bits; hs->hs_min_bits = (u8)cur_bits;
hs->hs_max_bits = (__u8)max_bits; hs->hs_max_bits = (u8)max_bits;
hs->hs_bkt_bits = (__u8)bkt_bits; hs->hs_bkt_bits = (u8)bkt_bits;
hs->hs_ops = ops; hs->hs_ops = ops;
hs->hs_extra_bytes = extra_bytes; hs->hs_extra_bytes = extra_bytes;
...@@ -1405,14 +1405,14 @@ cfs_hash_for_each_exit(struct cfs_hash *hs) ...@@ -1405,14 +1405,14 @@ cfs_hash_for_each_exit(struct cfs_hash *hs)
* . if @removal_safe is true, use can remove current item by * . if @removal_safe is true, use can remove current item by
* cfs_hash_bd_del_locked * cfs_hash_bd_del_locked
*/ */
static __u64 static u64
cfs_hash_for_each_tight(struct cfs_hash *hs, cfs_hash_for_each_cb_t func, cfs_hash_for_each_tight(struct cfs_hash *hs, cfs_hash_for_each_cb_t func,
void *data, int remove_safe) void *data, int remove_safe)
{ {
struct hlist_node *hnode; struct hlist_node *hnode;
struct hlist_node *pos; struct hlist_node *pos;
struct cfs_hash_bd bd; struct cfs_hash_bd bd;
__u64 count = 0; u64 count = 0;
int excl = !!remove_safe; int excl = !!remove_safe;
int loop = 0; int loop = 0;
int i; int i;
...@@ -1525,7 +1525,7 @@ cfs_hash_is_empty(struct cfs_hash *hs) ...@@ -1525,7 +1525,7 @@ cfs_hash_is_empty(struct cfs_hash *hs)
} }
EXPORT_SYMBOL(cfs_hash_is_empty); EXPORT_SYMBOL(cfs_hash_is_empty);
__u64 u64
cfs_hash_size_get(struct cfs_hash *hs) cfs_hash_size_get(struct cfs_hash *hs)
{ {
return cfs_hash_with_counter(hs) ? return cfs_hash_with_counter(hs) ?
...@@ -1556,7 +1556,7 @@ cfs_hash_for_each_relax(struct cfs_hash *hs, cfs_hash_for_each_cb_t func, ...@@ -1556,7 +1556,7 @@ cfs_hash_for_each_relax(struct cfs_hash *hs, cfs_hash_for_each_cb_t func,
struct hlist_node *hnode; struct hlist_node *hnode;
struct hlist_node *tmp; struct hlist_node *tmp;
struct cfs_hash_bd bd; struct cfs_hash_bd bd;
__u32 version; u32 version;
int count = 0; int count = 0;
int stop_on_change; int stop_on_change;
int end = -1; int end = -1;
......
...@@ -411,7 +411,7 @@ EXPORT_SYMBOL(cfs_expr_list_print); ...@@ -411,7 +411,7 @@ EXPORT_SYMBOL(cfs_expr_list_print);
* \retval 0 otherwise * \retval 0 otherwise
*/ */
int int
cfs_expr_list_match(__u32 value, struct cfs_expr_list *expr_list) cfs_expr_list_match(u32 value, struct cfs_expr_list *expr_list)
{ {
struct cfs_range_expr *expr; struct cfs_range_expr *expr;
...@@ -433,10 +433,10 @@ EXPORT_SYMBOL(cfs_expr_list_match); ...@@ -433,10 +433,10 @@ EXPORT_SYMBOL(cfs_expr_list_match);
* \retval < 0 for failure * \retval < 0 for failure
*/ */
int int
cfs_expr_list_values(struct cfs_expr_list *expr_list, int max, __u32 **valpp) cfs_expr_list_values(struct cfs_expr_list *expr_list, int max, u32 **valpp)
{ {
struct cfs_range_expr *expr; struct cfs_range_expr *expr;
__u32 *val; u32 *val;
int count = 0; int count = 0;
int i; int i;
......
...@@ -83,7 +83,7 @@ static inline bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data) ...@@ -83,7 +83,7 @@ static inline bool libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
CERROR("LIBCFS ioctl: plen2 nonzero but no pbuf2 pointer\n"); CERROR("LIBCFS ioctl: plen2 nonzero but no pbuf2 pointer\n");
return true; return true;
} }
if ((__u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len) { if ((u32)libcfs_ioctl_packlen(data) != data->ioc_hdr.ioc_len) {
CERROR("LIBCFS ioctl: packlen != ioc_len\n"); CERROR("LIBCFS ioctl: packlen != ioc_len\n");
return true; return true;
} }
......
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