aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/lustre/lustre/obdclass/lu_object.c
diff options
context:
space:
mode:
authorDafna Hirschfeld <dafna3@gmail.com>2018-03-04 22:09:34 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-03-06 04:01:11 -0800
commit14a313c772b68e568f177c18aa8ebe28d60970a7 (patch)
treeab75738c71e2a112126ddd87b264a55c05915f81 /drivers/staging/lustre/lustre/obdclass/lu_object.c
parentstaging: lustre: obdclass: Add 'const' to char* array (diff)
downloadlinux-dev-14a313c772b68e568f177c18aa8ebe28d60970a7.tar.xz
linux-dev-14a313c772b68e568f177c18aa8ebe28d60970a7.zip
staging: lustre: obdclass: Replace 'unsigned' with 'unsigned int'
Replace 'unsigned' with 'unsigned int' to improve readability. Issues found with checkpatch.pl Signed-off-by: Dafna Hirschfeld <dafna3@gmail.com> Acked-by: Julia Lawall <julia.lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r--drivers/staging/lustre/lustre/obdclass/lu_object.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/staging/lustre/lustre/obdclass/lu_object.c b/drivers/staging/lustre/lustre/obdclass/lu_object.c
index cca688175d2d..964e854858d6 100644
--- a/drivers/staging/lustre/lustre/obdclass/lu_object.c
+++ b/drivers/staging/lustre/lustre/obdclass/lu_object.c
@@ -1797,10 +1797,10 @@ int lu_env_refill(struct lu_env *env)
EXPORT_SYMBOL(lu_env_refill);
struct lu_site_stats {
- unsigned lss_populated;
- unsigned lss_max_search;
- unsigned lss_total;
- unsigned lss_busy;
+ unsigned int lss_populated;
+ unsigned int lss_max_search;
+ unsigned int lss_total;
+ unsigned int lss_busy;
};
static void lu_site_stats_get(struct cfs_hash *hs,